xunit.assemblyfixture
2.1.0-beta
See the version list below for details.
dotnet add package xunit.assemblyfixture --version 2.1.0-beta
NuGet\Install-Package xunit.assemblyfixture -Version 2.1.0-beta
<PackageReference Include="xunit.assemblyfixture" Version="2.1.0-beta" />
paket add xunit.assemblyfixture --version 2.1.0-beta
#r "nuget: xunit.assemblyfixture, 2.1.0-beta"
// Install xunit.assemblyfixture as a Cake Addin #addin nuget:?package=xunit.assemblyfixture&version=2.1.0-beta&prerelease // Install xunit.assemblyfixture as a Cake Tool #tool nuget:?package=xunit.assemblyfixture&version=2.1.0-beta&prerelease
xunit.assemblyfixture
Provides shared state/fixture data across tests in the same assembly, following the design of class fixtures (rather than the more convoluted collection fixtures).
To complement xUnit documentation style, I shamelessly copy its layout here.
NOTE: applies to xunit 2.4 only. 3.0+ will have its own way of doing this.
Shared Context between Tests
Please read xUnit documentation on shared context and the various built-in options, which are:
- Constructor and Dispose (shared setup/cleanup code without sharing object instances)
- Class Fixtures (shared object instance across tests in a single class)
- Collection Fixtures (shared object instances across multiple test classes
To which this project adds:
- Assembly Fixtures (shared object instances across multiple test classes within the same test assembly)
Assembly Fixtures
When to use: when you want to create a single assembly-level context and share it among all tests in the assembly, and have it cleaned up after all the tests in the assembly have finished.
Sometimes test context creation and cleanup can be very expensive. If you were to run the creation and cleanup code during every test, it might make the tests slower than you want. Sometimes, you just need to aggregate data across multiple tests in multiple classes. You can use the assembly fixture feature of [xUnit.net Assembly Fixtures](https://www.nuget.org/packages/xunit.assemblyfixture) to share a single object instance among all tests in a test assembly.
When using an assembly fixture, xUnit.net will ensure that the fixture instance
will be created before any of the tests using it have run, and once all the tests
have finished, it will clean up the fixture object by calling Dispose
, if present.
To use assembly fixtures, you need to take the following steps:
- Create the fixture class, and put the the startup code in the fixture class constructor.
- If the fixture class needs to perform cleanup, implement
IDisposable
on the fixture class, and put the cleanup code in theDispose()
method. - Add
IAssemblyFixture<TFixture>
to the test class. - If the test class needs access to the fixture instance, add it as a constructor argument, and it will be provided automatically.
Here is a simple example:
public class DatabaseFixture : IDisposable
{
public DatabaseFixture()
{
Db = new SqlConnection("MyConnectionString");
// ... initialize data in the test database ...
}
public void Dispose()
{
// ... clean up test data from the database ...
}
public SqlConnection Db { get; private set; }
}
public class MyDatabaseTests : IAssemblyFixture<DatabaseFixture>
{
DatabaseFixture fixture;
public MyDatabaseTests(DatabaseFixture fixture)
{
this.fixture = fixture;
}
// ... write tests, using fixture.Db to get access to the SQL Server ...
}
Just before the first test in the assembly to require the DatabaseFixture
is run, xUnit.net will create an instance of DatabaseFixture
. Each subsequent
test will receive the same shared instance, passed to the constructor of
MyDatabaseTests
, just like a static singleton, but with predictable cleanup
via IDisposable
.
Important note: xUnit.net uses the presence of the interface
IAssemblyFixture<>
to know that you want an assembly fixture to
be created and cleaned up. It will do this whether you take the instance of
the class as a constructor argument or not. Simiarly, if you add the constructor
argument but forget to add the interface, xUnit.net will let you know that it
does not know how to satisfy the constructor argument.
If you need multiple fixture objects, you can implement the interface as many times as you want, and add constructor arguments for whichever of the fixture object instances you need access to. The order of the constructor arguments is unimportant.
Note that you cannot control the order that fixture objects are created, and fixtures cannot take dependencies on other fixtures. If you have need to control creation order and/or have dependencies between fixtures, you should create a class which encapsulates the other two fixtures, so that it can do the object creation itself.
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
- xunit (>= 2.4.1)
- xunit.abstractions (>= 2.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (3)
Showing the top 3 popular GitHub repositories that depend on xunit.assemblyfixture:
Repository | Stars |
---|---|
coverlet-coverage/coverlet
Cross platform code coverage for .NET
|
|
jwaliszko/ExpressiveAnnotations
Annotation-based conditional validation library.
|
|
videokojot/EFCore.BulkExtensions.MIT
|