Xunit.DependencyInjection 9.9.0
Use Microsoft.Extensions.DependencyInjection to resolve xUnit test cases
How to use
Install the Nuget package.
dotnet add package Xunit.DependencyInjection
In your testing project, add the following framework
namespace Your.Test.Project
{
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddTransient<IDependency, DependencyClass>();
}
}
}
Example test class.
public interface IDependency
{
int Value { get; }
}
internal class DependencyClass : IDependency
{
public int Value => 1;
}
public class MyAwesomeTests
{
private readonly IDependency _d;
public MyAwesomeTests(IDependency d) => _d = d;
[Fact]
public void AssertThatWeDoStuff()
{
Assert.Equal(1, _d.Value);
}
}
Xunit.DependencyInjectionis built into the generic host and fully supports its lifecycle, allowing you to use all features supported by the generic host, including but not limited toIHostedService.
Integration asp.net core TestHost(3.0+)
Asp.Net Core Startup
dotnet add package Microsoft.AspNetCore.TestHost
public class Startup
{
public void ConfigureHost(IHostBuilder hostBuilder) => hostBuilder
.ConfigureWebHost[Defaults](webHostBuilder => webHostBuilder
.UseTestServer(options => options.PreserveExecutionContext = true)
.UseStartup<AspNetCoreStartup>());
}
MinimalApi
If you use MinimalApi rather than asp.net core Startup class.
Add package reference for Xunit.DependencyInjection.AspNetCoreTesting
dotnet add package Xunit.DependencyInjection.AspNetCoreTesting
public class Startup
{
public IHostBuilder CreateHostBuilder() => MinimalApiHostBuilderFactory.GetHostBuilder<Program>();
}
Maybe your asp.net core project should InternalsVisibleTo or add
public partial class Program {}in the end ofProgram.cs;Detail see Xunit.DependencyInjection.Test.AspNetCore
Startup limitation
CreateHostBuildermethod
public class Startup
{
public IHostBuilder CreateHostBuilder([AssemblyName assemblyName]) { }
}
ConfigureHostmethod
public class Startup
{
public void ConfigureHost(IHostBuilder hostBuilder) { }
}
ConfigureServicesmethod
public class Startup
{
public void ConfigureServices(IServiceCollection services[, HostBuilderContext context]) { }
}
ConfiguremethodAnything defined in
ConfigureServices, can be specified in theConfiguremethod signature. These services are injected if they're available.
How to find Startup?
1. Specific startup
Declare [Startup] on test class
2. Nested startup
public class TestClass1
{
public class Startup
{
public void ConfigureServices(IServiceCollection services) { }
}
3. Closest startup
If the class type full name is "A.B.C.TestClass", find Startup in the following order:
A.B.C.StartupA.B.StartupA.StartupStartup
4. Default startup
Default startup is required before 8.7.0, is optional in some case after 8.7.0.
If is required, please add a startup class in your test project.
Default is find Your.Test.Project.Startup, Your.Test.Project.
If you want to use a special Startup, you can define XunitStartupAssembly and XunitStartupFullName in the PropertyGroup section
<Project>
<PropertyGroup>
<XunitStartupAssembly>Abc</XunitStartupAssembly>
<XunitStartupFullName>Xyz</XunitStartupFullName>
</PropertyGroup>
</Project>
| XunitStartupAssembly | XunitStartupFullName | Startup |
|---|---|---|
| Your.Test.Project.Startup, Your.Test.Project | ||
| Abc | Abc.Startup, Abc | |
| Xyz | Xyz, Your.Test.Project | |
| Abc | Xyz | Xyz, Abc |
Parallel
By default, xUnit runs all test cases in a test class synchronously. This package can extend the test framework to execute tests in parallel.
<Project>
<PropertyGroup>
<ParallelizationMode></ParallelizationMode>
</PropertyGroup>
</Project>
This package has two policies to run test cases in parallel.
Enhance or true
Respect xunit parallelization behavior.
Force
Ignore xunit parallelization behavior and force running tests in parallel.
If [Collection](if ParallelizationMode is not Force), [CollectionDefinition(DisableParallelization = true)], [DisableParallelization] declared on the test class, the test class will run sequentially. If [DisableParallelization], [MemberData(DisableDiscoveryEnumeration = true)] declared on the test method, the test method will run sequentially.
It is recommended to use xunit 2.8.0+ and without setting parallelAlgorithm
How to disable Xunit.DependencyInjection
<Project>
<PropertyGroup>
<EnableXunitDependencyInjectionDefaultTestFrameworkAttribute>false</EnableXunitDependencyInjectionDefaultTestFrameworkAttribute>
</PropertyGroup>
</Project>
How to inject ITestOutputHelper
internal class DependencyClass : IDependency
{
private readonly ITestOutputHelperAccessor _testOutputHelperAccessor;
public DependencyClass(ITestOutputHelperAccessor testOutputHelperAccessor)
{
_testOutputHelperAccessor = testOutputHelperAccessor;
}
}
Write Microsoft.Extensions.Logging to ITestOutputHelper
Add package reference for Xunit.DependencyInjection.Logging
dotnet add package Xunit.DependencyInjection.Logging
The call chain must be from the test case. If not, this feature will not work.
public class Startup
{
public void ConfigureServices(IServiceCollection services) => services
.AddLogging(lb => lb.AddXunitOutput());
}
How to inject IConfiguration or IHostEnvironment into Startup?
public class Startup
{
public void ConfigureHost(IHostBuilder hostBuilder) => hostBuilder
.ConfigureServices((context, services) => { context.XXXX });
}
or
public class Startup
{
public void ConfigureServices(IServiceCollection services, HostBuilderContext context)
{
context.XXXX;
}
}
How to configure IConfiguration?
public class Startup
{
public void ConfigureHost(IHostBuilder hostBuilder) => hostBuilder
.ConfigureHostConfiguration(builder => { })
.ConfigureAppConfiguration((context, builder) => { });
}
[MemberData] how to inject?
Use [MethodData]
Integrate OpenTelemetry
TracerProviderBuilder builder;
builder.AddSource("Xunit.DependencyInjection");
Do something before and after test case
Inherit BeforeAfterTest and register as BeforeAfterTest service.
Initialize some data on startup.
If it is synchronous initialization, you can use the Configure method. If it is asynchronous initialization, you should use IHostedService.
No packages depend on Xunit.DependencyInjection.
Use Microsoft.Extensions.DependencyInjection to inject xunit testclass. If you want write Microsoft.Extensions.Logging to ITestOutputHelper, please install Xunit.DependencyInjection.Logging.
Release notes:
9.9: Fix some parallelization problem.
9.8: Allow the default startup to be missing anywhere.
9.7: Fix #133 #134, IHost.StopAsync might not have been invoked.
9.6: Support required property on test class.
9.5: Add support for BuildHostApplicationBuilder, fixing TheoryData of T evaluation.
9.4: Add ITestClassOrderer, Support registration ITestCollectionOrderer and ITestCaseOrderer.
9.3: Support xunit 2.8.0.
9.2: Add BeforeAfterTest.
9.1: Support [FromKeyedService].
9.0: Upgrade TargetFramework version and reference package version.
8.9: Extends the test framework to execute tests in parallel.
8.8: Added support BuildHost method in startup.
8.7: Allow missing default startup in some case.
8.6: Support any awaitable type of async test method.
8.5: Change analyzer category.
8.4: Fix #63: allow modify default service from DI container.
8.3: Add ActivitySource(name: Xunit.DependencyInjection) and ValueTask/ValueTask<> support.
8.2: Fix #60: support IAsyncDisposable.
8.1: Startup allow static method or class (like Asp.Net Core startup).
8.0: New feature: Support multiple startup.
.NET Framework 4.7.2
- Microsoft.Extensions.Hosting (>= 8.0.1)
- xunit.extensibility.execution (>= 2.4.2 && < 3.0.0)
.NET Standard 2.1
- Microsoft.Extensions.Hosting (>= 8.0.1)
- xunit.extensibility.execution (>= 2.4.2 && < 3.0.0)
| Version | Downloads | Last updated |
|---|---|---|
| 11.1.1 | 2 | 01/22/2026 |
| 11.1.0 | 2 | 12/15/2025 |
| 11.0.0 | 3 | 10/28/2025 |
| 10.8.0 | 3 | 10/28/2025 |
| 10.7.0 | 4 | 09/16/2025 |
| 10.6.0 | 5 | 08/09/2025 |
| 10.5.0 | 5 | 08/09/2025 |
| 10.4.2 | 5 | 08/09/2025 |
| 10.4.1 | 5 | 08/09/2025 |
| 10.4.0 | 5 | 08/09/2025 |
| 10.3.0 | 5 | 08/09/2025 |
| 10.2.1 | 5 | 08/09/2025 |
| 10.2.0 | 5 | 08/09/2025 |
| 10.1.1 | 5 | 08/09/2025 |
| 10.1.0 | 6 | 01/25/2025 |
| 10.0.0 | 5 | 08/09/2025 |
| 9.9.1 | 747 | 05/12/2025 |
| 9.9.0 | 16 | 04/25/2025 |
| 9.8.0 | 16 | 01/25/2025 |
| 9.7.1 | 10 | 01/04/2025 |
| 9.7.0 | 1 | 11/22/2024 |
| 9.6.0 | 6 | 08/06/2025 |
| 9.5.0 | 21 | 10/28/2024 |
| 9.4.0 | 6 | 08/06/2025 |
| 9.3.1 | 6 | 08/06/2025 |
| 9.3.0 | 6 | 08/06/2025 |
| 9.2.1 | 6 | 08/06/2025 |
| 9.1.0 | 6 | 08/06/2025 |
| 9.0.1 | 6 | 08/06/2025 |
| 8.9.1 | 6 | 08/06/2025 |
| 8.9.0 | 8 | 10/16/2024 |
| 8.8.2 | 6 | 08/06/2025 |
| 8.8.1 | 6 | 08/06/2025 |
| 8.7.2 | 6 | 08/06/2025 |
| 8.7.1 | 6 | 08/06/2025 |
| 8.7.0 | 5 | 08/06/2025 |
| 8.6.1 | 6 | 07/29/2025 |
| 8.6.0 | 6 | 08/06/2025 |
| 8.5.0 | 295 | 01/01/2024 |
| 8.4.1 | 6 | 08/06/2025 |
| 8.4.0 | 6 | 08/06/2025 |
| 8.3.0 | 6 | 08/06/2025 |
| 8.2.0 | 6 | 08/06/2025 |
| 8.1.0 | 6 | 08/06/2025 |
| 8.0.0 | 6 | 08/06/2025 |
| 7.7.0 | 6 | 08/06/2025 |
| 7.6.0 | 6 | 08/06/2025 |
| 7.5.1 | 6 | 08/06/2025 |
| 7.4.0 | 6 | 08/06/2025 |
| 7.3.0 | 6 | 08/06/2025 |
| 7.2.0 | 6 | 08/06/2025 |
| 7.1.0 | 6 | 08/06/2025 |