BunsenBurner.BenchmarkDotNet
6.2.4
dotnet add package BunsenBurner.BenchmarkDotNet --version 6.2.4
NuGet\Install-Package BunsenBurner.BenchmarkDotNet -Version 6.2.4
<PackageReference Include="BunsenBurner.BenchmarkDotNet" Version="6.2.4" />
paket add BunsenBurner.BenchmarkDotNet --version 6.2.4
#r "nuget: BunsenBurner.BenchmarkDotNet, 6.2.4"
// Install BunsenBurner.BenchmarkDotNet as a Cake Addin #addin nuget:?package=BunsenBurner.BenchmarkDotNet&version=6.2.4 // Install BunsenBurner.BenchmarkDotNet as a Cake Tool #tool nuget:?package=BunsenBurner.BenchmarkDotNet&version=6.2.4
Bunsen Burner BenchmarkDotNet
This provides integration with BenchmarkDotNet to write performance tests.
Getting Started
To use this library, simply include BunsenBurner.BenchmarkDotNet.dll
in your
project
or grab
it from NuGet,
and add
this to the top of each test .cs
file
that needs it:
using static BunsenBurner.BenchmarkDotNet.Aaa;
or
using static BunsenBurner.BenchmarkDotNet.Bdd;
What?
BenchmarkDotNet is an easy to use performance/benchmarking library.
These are not tests that are fast to run, they should be pulled into a separate project.
How to use
To start using it import the syntax that your test project is using.
using static Aaa;
public class AaaTests
{
private readonly ITestOutputHelper _outputHelper;
public AaaTests(ITestOutputHelper outputHelper) => _outputHelper = outputHelper;
[Fact(DisplayName = "Benchmarks can be run and asserted against")]
public async Task Case1() =>
// for a supported benchmarks class
await ArrangeBenchmarks<TestBenchmarks>(
// custom configuration
config => config.AddDiagnoser(...),
// location of log messages
logSink: _outputHelper.WriteLine,
// extra parameters
"test",
"test2"
)
.ActAndExecuteBenchmarks() // run benchmarks, can take a while
.Assert(
r => // summary to assert against
{
Assert.Empty(r.ValidationErrors);
Assert.NotEqual(r.TotalTime, TimeSpan.Zero);
});
}
For more information on performance testing and how to use BenchmarkDotNet with Bunsen Burner checkout the tests or raise a question/issue.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- BenchmarkDotNet (>= 0.13.5)
- BunsenBurner (>= 6.2.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
6.2.4 | 672 | 6/20/2023 |
6.2.3 | 631 | 6/5/2023 |
6.2.2 | 675 | 4/25/2023 |
6.2.1 | 713 | 3/11/2023 |
6.2.0 | 749 | 1/29/2023 |
6.1.1 | 787 | 1/19/2023 |
6.1.0 | 811 | 1/12/2023 |
6.0.0 | 764 | 1/11/2023 |
5.3.1 | 771 | 1/7/2023 |
5.3.0 | 826 | 1/6/2023 |
5.2.0 | 799 | 12/17/2022 |
5.1.0 | 773 | 12/12/2022 |
5.0.0 | 737 | 12/11/2022 |
4.0.1 | 786 | 12/11/2022 |
4.0.0 | 787 | 12/11/2022 |
3.0.0 | 760 | 12/10/2022 |
2.2.0 | 760 | 12/9/2022 |
2.1.0 | 755 | 12/9/2022 |
2.0.0 | 789 | 12/9/2022 |
1.6.2 | 766 | 12/2/2022 |
1.6.1 | 796 | 12/1/2022 |
1.6.0 | 777 | 11/30/2022 |
1.5.1 | 815 | 11/26/2022 |
1.5.0 | 829 | 11/21/2022 |