Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5b4e88 commit b774185Copy full SHA for b774185
src/perf_tests/BenchmarkTests.cs
@@ -21,7 +21,9 @@ public void SetUp()
21
Environment.CurrentDirectory = Path.Combine(DeploymentRoot, "new");
22
this.summary = BenchmarkRunner.Run<PythonCallingNetBenchmark>();
23
Assert.IsNotEmpty(this.summary.Reports);
24
- Assert.IsTrue(this.summary.Reports.All(r => r.Success));
+ Assert.IsTrue(
25
+ condition: this.summary.Reports.All(r => r.Success),
26
+ message: "BenchmarkDotNet failed to execute or collect results of performance tests. See logs above.");
27
}
28
29
[Test]
0 commit comments