Soenneker.Fixtures.Integration 4.0.678

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Fixtures.Integration --version 4.0.678
                    
NuGet\Install-Package Soenneker.Fixtures.Integration -Version 4.0.678
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soenneker.Fixtures.Integration" Version="4.0.678" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Fixtures.Integration" Version="4.0.678" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Fixtures.Integration" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Fixtures.Integration --version 4.0.678
                    
#r "nuget: Soenneker.Fixtures.Integration, 4.0.678"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Soenneker.Fixtures.Integration@4.0.678
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Fixtures.Integration&version=4.0.678
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Fixtures.Integration&version=4.0.678
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

Soenneker.Fixtures.Integration

A reusable xUnit fixture for lazily creating multiple authenticated ASP.NET Core WebApplicationFactory<T> instances with test logging and Bogus data generation.

Installation

dotnet add package Soenneker.Fixtures.Integration

Define a fixture

public sealed class ApiFixture : IntegrationFixture
{
    public ApiFixture()
    {
        RegisterFactory<Program>("net10.0");
    }
}

[CollectionDefinition("API")]
public sealed class ApiCollection : ICollectionFixture<ApiFixture>;

projectName identifies the directory directly beneath the parent of AppContext.BaseDirectory that contains appsettings.json. For a typical test output at bin/Debug/net10.0, passing net10.0 loads the copied bin/Debug/net10.0/appsettings.json. The resolved path must stay beneath that parent directory.

Register each startup type once. Repeated concurrent registrations for the same TStartup are safe; the first project name wins.

Use a factory

[Collection("API")]
public sealed class AccountTests(ApiFixture fixture)
{
    [Fact]
    public async Task Gets_account()
    {
        WebApplicationFactory<Program> factory = fixture.GetFactory<Program>().Value;
        using HttpClient client = factory.CreateClient();

        HttpResponseMessage response = await client.GetAsync("/api/account");
        response.EnsureSuccessStatusCode();
    }
}

Factories are lazy: registration does not start an application, and fixture disposal skips factories that were never created. Asking for an unregistered startup type throws InvalidOperationException.

Test host behavior

Each created factory:

  • Adds the selected appsettings.json without file watching.
  • Registers the JWT utility and integration-test startup filter.
  • Sets the default authentication scheme to Test and installs TestAuthHandler.
  • Sends verbose Serilog events to the injectable xUnit output sink.

The test authentication handler is for in-memory integration hosts only. Do not copy it into production service registration. Verbose test logs can contain application data, so avoid real credentials and production personal data in test configuration and requests.

Generated data

After xUnit calls InitializeAsync(), Faker and AutoFaker are available. A derived fixture can assign AutoFakerConfig before initialization to customize generation. Factory instances and generated-data helpers are shared according to the xUnit fixture lifetime, so tests should not mutate shared configuration after use begins.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
4.0.679 0 9/2/2026
4.0.678 0 9/1/2026
4.0.677 25 9/1/2026
4.0.676 42 8/31/2026
4.0.675 44 8/31/2026
4.0.674 48 8/31/2026
4.0.672 45 8/31/2026
4.0.671 37 8/31/2026
4.0.669 43 8/30/2026
4.0.667 49 8/30/2026
4.0.665 48 8/30/2026
4.0.664 43 8/30/2026
4.0.663 61 8/30/2026
4.0.661 49 8/30/2026
4.0.659 38 8/30/2026
4.0.658 61 8/30/2026
4.0.656 49 8/29/2026
4.0.654 40 8/29/2026
4.0.653 48 8/29/2026
4.0.652 39 8/29/2026
Loading failed

Update dependency Soenneker.Utils.AutoBogus to 4.0.941 (#1196)