Skip to content

Commit 48a8b08

Browse files
committed
refactor(benchmarks): remove xUnit v2 from benchmarks and update runtime to .NET 10.0
1 parent d7d1244 commit 48a8b08

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tools/speed-comparison/BENCHMARKS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TUnit Speed Comparison Benchmarks
22

3-
This directory contains realistic benchmarks comparing TUnit, xUnit v2, xUnit v3, NUnit, and MSTest frameworks.
3+
This directory contains realistic benchmarks comparing TUnit, xUnit v3, NUnit, and MSTest frameworks.
44

55
## Test Categories
66

tools/speed-comparison/Tests.Benchmark/BenchmarkConfig.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ public class BenchmarkConfig : ManualConfig
1111
{
1212
public BenchmarkConfig()
1313
{
14-
AddJob(Job.Default.WithRuntime(CoreRuntime.Core90));
14+
AddJob(Job.Default.WithRuntime(CoreRuntime.Core10_0));
1515
AddLogger(ConsoleLogger.Default);
1616
AddExporter(MarkdownExporter.GitHub);
17-
17+
1818
// Add the framework version column
1919
AddColumn(new FrameworkVersionColumn());
20-
20+
2121
// Add default columns
2222
AddColumn(TargetMethodColumn.Method);
2323
AddColumn(StatisticColumn.Mean);
2424
AddColumn(StatisticColumn.Error);
2525
AddColumn(StatisticColumn.StdDev);
2626
AddColumn(StatisticColumn.Median);
2727
AddColumn(BaselineRatioColumn.RatioMean);
28-
28+
2929
WithOptions(ConfigOptions.DisableLogFile);
3030
}
31-
}
31+
}

0 commit comments

Comments
 (0)