BunsenBurner 7.0.0
dotnet add package BunsenBurner --version 7.0.0
NuGet\Install-Package BunsenBurner -Version 7.0.0
<PackageReference Include="BunsenBurner" Version="7.0.0" />
paket add BunsenBurner --version 7.0.0
#r "nuget: BunsenBurner, 7.0.0"
// Install BunsenBurner as a Cake Addin #addin nuget:?package=BunsenBurner&version=7.0.0 // Install BunsenBurner as a Cake Tool #tool nuget:?package=BunsenBurner&version=7.0.0
Bunsen Burner
Test framework-agnostic, zero dependencies, easy to use DSL, more maintainable, easier to refactor. Set 🔥 to your old tests! A better way to write tests :test_tube: in C#.
Getting Started
To use this library, simply include BunsenBurner.dll
in your project or grab
it from NuGet, and add this to
the top of each test .cs
file
that needs it:
// for AAA style tests
using static BunsenBurner.ArrangeActAssert;
or
// for BDD style tests
using static BunsenBurner.GivenWhenThen;
[!NOTE] Tests must always return a
Task
to be compatible with the DSL.
Take an existing test,
[Fact(DisplayName = "SerializeAsync can work with anonymous objects")]
public async Task ExampleTest()
{
// Arrange
var widget = new { Name = "Widget1", Cost = 12.50 };
var ms = new MemoryStream();
// Act
await JsonSerializer.SerializeAsync(ms, widget);
// Assert
Assert.Equal(
expected: "{\"Name\":\"Widget1\",\"Cost\":12.5}",
actual: Encoding.UTF8.GetString(ms.ToArray())
);
}
and convert it to this,
[Fact(DisplayName = "SerializeAsync can work with anonymous objects")]
public Task ExampleTest() =>
Arrange(() => new { Name = "Widget1", Cost = 12.50 })
.Act(async widget =>
{
var ms = new MemoryStream();
await JsonSerializer.SerializeAsync(ms, widget);
return Encoding.UTF8.GetString(ms.ToArray());
})
.Assert(result => result == "{\"Name\":\"Widget1\",\"Cost\":12.5}");
This formalizes the structure and then opens up refactoring possibilities such as pulling out a shared act method,
[Fact(DisplayName = "SerializeAsync can work with anonymous objects")]
public Task ExampleTestUsingAaaBuilder2() =>
Arrange(() =>
{
var widget = new { Name = "Widget1", Cost = 12.50 };
var ms = new MemoryStream();
return (widget, ms);
})
// pull out the shared test code
.Act(CallSerializeAsync)
.Assert(result =>
Assert.Equal(
expected: "{\"Name\":\"Widget1\",\"Cost\":12.5}",
actual: result)
);
// this is now a shared stage and can be used in many tests
private static async Task<string> CallSerializeAsync<T>((T, MemoryStream) data)
{
var (widget, ms) = data;
await JsonSerializer.SerializeAsync(ms, widget);
return Encoding.UTF8.GetString(ms.ToArray());
}
The principle is simple, refine the test structure using a DSL then use the new structure to identify common code and DRY that code up.
For more information, see Bunsen Burner.
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
- Microsoft.Bcl.AsyncInterfaces (>= 8.0.0)
NuGet packages (12)
Showing the top 5 NuGet packages that depend on BunsenBurner:
Package | Downloads |
---|---|
BunsenBurner.Http
Extension methods for testing Http servers |
|
BunsenBurner.Verify.Xunit
Integration with [Verify.Xunit](https://github.com/VerifyTests/Verify) to simplify assert steps |
|
BunsenBurner.AutoFixture
Integration with [AutoFixture](https://github.com/AutoFixture) to simplify arrange steps |
|
BunsenBurner.Bogus
Integration with [Bogus](https://github.com/bchavez/Bogus) to simplify arrange steps |
|
BunsenBurner.Hedgehog
Integration with [Hedgehog](https://github.com/hedgehogqa/fsharp-hedgehog) to write property based tests |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
7.0.0 | 1,683 | 6/23/2024 |
6.2.4 | 14,217 | 6/20/2023 |
6.2.3 | 1,488 | 6/5/2023 |
6.2.2 | 3,528 | 4/25/2023 |
6.2.1 | 4,997 | 3/11/2023 |
6.2.0 | 2,820 | 1/29/2023 |
6.1.1 | 3,286 | 1/19/2023 |
6.1.0 | 4,539 | 1/12/2023 |
6.0.0 | 2,599 | 1/11/2023 |
5.3.1 | 2,682 | 1/7/2023 |
5.3.0 | 2,656 | 1/6/2023 |
5.2.0 | 2,714 | 12/17/2022 |
5.1.0 | 3,020 | 12/12/2022 |
5.0.0 | 2,703 | 12/11/2022 |
4.0.1 | 2,696 | 12/11/2022 |
4.0.0 | 2,718 | 12/11/2022 |
3.0.0 | 2,678 | 12/10/2022 |
2.2.0 | 2,642 | 12/9/2022 |
2.1.0 | 2,650 | 12/9/2022 |
2.0.0 | 2,759 | 12/9/2022 |
1.6.2 | 3,045 | 12/2/2022 |
1.6.1 | 2,988 | 12/1/2022 |
1.6.0 | 2,909 | 11/30/2022 |
1.5.1 | 3,063 | 11/26/2022 |
1.5.0 | 3,002 | 11/21/2022 |
1.4.1 | 2,415 | 11/19/2022 |
1.4.0 | 2,337 | 11/19/2022 |
1.3.0 | 2,199 | 11/19/2022 |
1.2.1 | 2,031 | 11/17/2022 |
1.2.0 | 2,092 | 11/16/2022 |
1.1.1 | 2,132 | 11/15/2022 |
1.1.0 | 2,024 | 11/15/2022 |
1.0.4 | 1,717 | 11/8/2022 |
1.0.3 | 1,841 | 11/6/2022 |
1.0.2 | 1,863 | 11/6/2022 |
1.0.1 | 1,841 | 11/6/2022 |
1.0.0 | 1,858 | 11/6/2022 |