Serilog.Sinks.XUnit.Injectable 4.0.177

dotnet add package Serilog.Sinks.XUnit.Injectable --version 4.0.177
                    
NuGet\Install-Package Serilog.Sinks.XUnit.Injectable -Version 4.0.177
                    
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="Serilog.Sinks.XUnit.Injectable" Version="4.0.177" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Serilog.Sinks.XUnit.Injectable" Version="4.0.177" />
                    
Directory.Packages.props
<PackageReference Include="Serilog.Sinks.XUnit.Injectable" />
                    
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 Serilog.Sinks.XUnit.Injectable --version 4.0.177
                    
#r "nuget: Serilog.Sinks.XUnit.Injectable, 4.0.177"
                    
#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 Serilog.Sinks.XUnit.Injectable@4.0.177
                    
#: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=Serilog.Sinks.XUnit.Injectable&version=4.0.177
                    
Install as a Cake Addin
#tool nuget:?package=Serilog.Sinks.XUnit.Injectable&version=4.0.177
                    
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

Serilog.Sinks.XUnit.Injectable

The injectable, Serilog xUnit test output sink

Leverage xUnit's TestOutputHelper across tests that share state

Common use cases

  • Integration tests (i.e. WebApplicationFactory)
  • Unit tests that utilize Dependency Injection in a fixture

Why?

When running a suite of tests, it can be expensive to build a new DI ServiceProvider, and even more so, a WebApplicationFactory. Hence, these can be stored in a xUnit fixture and reused across tests.

xUnit provides a new TestOutputHelper per test, and so even if you register it as a sink initially, the next test will not capture/output messages from the services inside the provider.

This library addresses that issue by allowing for the TestOutputHelper from each test to be "injected" into the fixture as it's running. It also maintains the context of each test in the appropriate test runner window.

Examples are provided for both Unit and Integration tests. For brevity, the actual injection is shown in the constructor of the test class in the examples below, but you'll probably want to leverage a base class.

xUnit Compatibility

  • Version 3.x: Supports xUnit 2.9.
  • Latest Version: Fully supports xUnit 3.

Installation

dotnet add package Serilog.Sinks.XUnit.Injectable

Example: WebApplicationFactory "integration tests"


public class ApiFixture : IAsyncLifetime
{
    public WebApplicationFactory<Program> ApiFactory { get; set; } = default!;

    public Task InitializeAsync()
    {
        ApiFactory = new WebApplicationFactory<Program>();
        ApiFactory = ApiFactory.WithWebHostBuilder(builder =>
        {
            // Instantiate the sink, with any configuration (like outputTemplate, formatProvider)
            var injectableTestOutputSink = new InjectableTestOutputSink();

            builder.ConfigureServices(services =>
            {
                // Register the sink as a singleton
                services.AddSingleton<IInjectableTestOutputSink>(injectableTestOutputSink); 
            });

            builder.UseSerilog((_, loggerConfiguration) =>
            {
                // Add the sink to the logger configuration
                loggerConfiguration.WriteTo.InjectableTestOutput(injectableTestOutputSink);
            });
        });

        return Task.CompletedTask;
    }

    public async Task DisposeAsync()
    {
        await ApiFactory.DisposeAsync();
    }
}
[Collection("ApiCollection")]
public class ApiTests
{
    private readonly HttpClient _client;

    public ApiTests(ApiFixture fixture, ITestOutputHelper testOutputHelper)
    {
        var outputSink = (IInjectableTestOutputSink)fixture.ApiFactory.Services.GetService(typeof(IInjectableTestOutputSink))!;
        outputSink.Inject(testOutputHelper); // <-- inject the new ITestOutputHelper into the sink

        _client = fixture.ApiFactory.CreateClient();
    }

    [Fact]
    public async Task Get_should_have_log_messages_and_be_successful()
    {
        HttpResponseMessage response = await _client.GetAsync("/");
        response.EnsureSuccessStatusCode();
    }
}

Example: ServiceProvider "Fixtured unit tests"


public class UnitFixture : IAsyncLifetime
{
    public ServiceProvider ServiceProvider { get; set; } = default!;

    protected IServiceCollection Services { get; set; }

    public UnitFixture()
    {
        var injectableTestOutputSink = new InjectableTestOutputSink();

        Services = new ServiceCollection();

        Services.AddSingleton<IInjectableTestOutputSink>(injectableTestOutputSink);
        Services.AddSingleton<SampleUtil>();

        ILogger serilogLogger = new LoggerConfiguration()
            .WriteTo.InjectableTestOutput(injectableTestOutputSink)
            .CreateLogger();

        Log.Logger = serilogLogger;

        Services.AddLogging(builder =>
        {
            builder.AddSerilog(dispose: false);
        });
    }

    public virtual Task InitializeAsync()
    {
        ServiceProvider = Services.BuildServiceProvider();

        return Task.CompletedTask;
    }

    public virtual async Task DisposeAsync()
    {
        await ServiceProvider.DisposeAsync();
    }
}

[Collection("UnitCollection")]
public class SampleUtilTests
{
    private readonly SampleUtil _util;

    public SampleUtilTests(UnitFixture fixture, ITestOutputHelper testOutputHelper)
    {
        var outputSink = (IInjectableTestOutputSink)fixture.ServiceProvider.GetService(typeof(IInjectableTestOutputSink));
        outputSink.Inject(testOutputHelper);

        _util = (SampleUtil)fixture.ServiceProvider.GetService(typeof(SampleUtil));
    }

    [Fact]
    public void DoWork_should_result_with_log_messages()
    {
        _util.DoWork();
    }
}

SampleUtil


public class SampleUtil
{
    private readonly ILogger<SampleUtil> _logger;

    public SampleUtil(ILogger<SampleUtil> logger)
    {
        _logger = logger;
    }

    public void DoWork()
    {
        Log.Logger.Information("----- Did some work (Serilog logger) -----");
        _logger.LogInformation("----- Did some work (Microsoft logger) -----");
    }
}
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 (4)

Showing the top 4 NuGet packages that depend on Serilog.Sinks.XUnit.Injectable:

Package Downloads
Soenneker.Tests.Unit

A base test providing faker and autofaker capabilities

Soenneker.Fixtures.Unit

A base xUnit fixture providing injectable log output, DI mechanisms like IServiceCollection and ServiceProvider, and AutoFaker/Faker for generating test data.

Soenneker.Fixtures.Integration

Provides a reusable and generic integration test xunit fixture that dynamically registers and configures WebApplicationFactory instances for multiple ASP.NET Core projects with support for custom app settings, authentication, logging, and test utilities.

DotCart.Drivers.Serilog

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.177 4,240 1/6/2026
4.0.176 270 1/6/2026
4.0.174 4,833 1/6/2026
4.0.173 9,605 1/3/2026
4.0.172 3,084 1/3/2026
4.0.170 4,258 1/2/2026
4.0.169 84 1/2/2026
4.0.168 6,343 1/2/2026
4.0.167 9,426 12/31/2025
4.0.166 2,331 12/31/2025
4.0.165 8,289 12/21/2025
4.0.164 3,278 12/21/2025
4.0.163 1,446 12/20/2025
4.0.162 2,950 12/20/2025
4.0.161 2,923 12/19/2025
4.0.160 2,924 12/19/2025
4.0.159 220 12/19/2025
4.0.158 337 12/17/2025
4.0.157 1,205 12/17/2025
4.0.156 277 12/17/2025
4.0.154 28,604 11/28/2025
4.0.152 7,486 11/21/2025
4.0.151 2,748 11/21/2025
4.0.150 429 11/21/2025
4.0.148 6,502 11/20/2025
4.0.147 30,269 11/6/2025
4.0.146 13,848 11/2/2025
4.0.145 3,788 10/30/2025
4.0.144 3,017 10/30/2025
4.0.143 3,557 10/30/2025
4.0.142 223 10/30/2025
4.0.141 4,041 10/29/2025
4.0.140 32,853 10/7/2025
4.0.139 11,110 9/28/2025
4.0.138 24,930 9/9/2025
4.0.137 1,558 9/9/2025
4.0.136 366 9/9/2025
4.0.135 16,609 9/3/2025
4.0.133 19,645 8/16/2025
4.0.132 9,156 8/11/2025
4.0.131 3,135 8/11/2025
4.0.130 22,880 7/25/2025
4.0.129 2,409 7/23/2025
4.0.124 3,060 7/18/2025
4.0.123 2,184 7/14/2025
4.0.122 227 7/14/2025
4.0.121 225 7/14/2025
4.0.120 215 7/14/2025
4.0.119 211 7/14/2025
4.0.108 3,346 7/12/2025
4.0.107 2,193 7/10/2025
4.0.106 31,126 7/3/2025
4.0.105 11,989 6/27/2025
4.0.104 27,800 6/7/2025
4.0.103 11,112 5/27/2025
4.0.102 19,672 5/22/2025
4.0.101 14,176 5/18/2025
4.0.100 20,140 5/7/2025
4.0.99 14,520 5/5/2025
4.0.98 684 5/5/2025
4.0.97 12,249 5/4/2025
4.0.96 12,672 4/8/2025
4.0.95 41,530 4/5/2025
4.0.94 594 4/5/2025
4.0.93 103,402 3/11/2025
4.0.92 25,474 3/1/2025
4.0.91 4,312 3/1/2025
4.0.90 58,659 2/11/2025
4.0.89 12,014 2/10/2025
4.0.88 14,424 2/7/2025
4.0.87 3,762 2/7/2025
4.0.86 3,689 2/7/2025
4.0.84 94,327 1/20/2025
4.0.83 38,829 1/14/2025
4.0.82 18,673 1/10/2025
4.0.81 1,821 1/10/2025
4.0.80 692 1/10/2025
4.0.79 16,017 1/2/2025
4.0.77 11,460 12/31/2024
4.0.76 11,466 12/31/2024
4.0.75 688 12/31/2024
4.0.74 710 12/31/2024
4.0.73 10,579 12/27/2024
4.0.72 8,579 12/24/2024
4.0.71 37,070 12/19/2024
4.0.68 5,516 12/18/2024
4.0.67 5,967 12/16/2024
4.0.66 721 12/16/2024
3.0.64 34,178 12/16/2024
3.0.63 17,778 12/9/2024
3.0.62 11,623 12/6/2024
3.0.61 10,946 12/5/2024
3.0.60 24,846 12/3/2024
3.0.59 654 12/3/2024
3.0.58 38,947 11/19/2024
3.0.57 18,825 11/14/2024
3.0.56 1,031 11/14/2024
2.1.55 5,941 11/13/2024
2.1.54 7,492 11/12/2024
2.1.53 571 11/12/2024
2.1.52 40,904 10/22/2024
2.1.51 15,724 10/11/2024
2.1.50 8,939 10/8/2024
2.1.49 1,109 10/8/2024
2.1.48 24,776 9/28/2024
2.1.47 7,602 9/27/2024
2.1.46 22,849 9/23/2024
2.1.45 46,349 9/6/2024
2.1.44 33,513 8/20/2024
2.1.43 13,250 8/13/2024
2.1.42 19,383 8/1/2024
2.1.41 5,849 7/25/2024
2.1.40 36,359 7/9/2024
2.1.39 4,968 7/9/2024
2.1.38 502 7/9/2024
2.1.37 458 7/9/2024
2.1.36 46,139 6/1/2024
2.1.35 1,330 6/1/2024
2.1.34 76,415 5/25/2024
2.1.33 485 5/25/2024
2.1.32 16,846 5/22/2024
2.1.31 13,286 5/14/2024
2.1.30 19,040 4/27/2024
2.1.29 244 4/27/2024
2.1.28 14,855 4/12/2024
2.1.27 2,973 4/11/2024
2.1.26 7,343 4/9/2024
2.1.25 23,709 3/13/2024
2.1.24 2,966 3/12/2024
2.1.23 38,412 2/21/2024
2.1.22 10,729 2/16/2024
2.1.21 277 2/16/2024
2.1.20 7,173 2/13/2024
2.1.19 22,088 2/6/2024
2.1.18 43,197 1/19/2024
2.1.17 8,024 1/15/2024
2.1.16 7,550 1/9/2024
2.1.15 5,604 1/5/2024
2.1.14 5,804 12/27/2023
2.1.13 956 12/27/2023
2.1.12 3,546 12/25/2023
2.1.11 2,861 12/24/2023
2.1.10 2,858 12/23/2023
2.1.9 281 12/23/2023
2.1.8 12,148 12/9/2023
2.1.7 262 12/9/2023
2.1.6 8,850 12/4/2023
2.1.5 7,724 11/23/2023
2.1.4 219 11/23/2023
2.1.3 2,835 11/23/2023
2.1.2 12,800 11/16/2023
2.0.52 9,864 11/15/2023
2.0.51 232 11/15/2023
2.0.50 473 11/15/2023
1.0.65 304 11/15/2023
1.0.64 7,897 11/13/2023
1.0.63 2,106 11/10/2023
1.0.62 469 11/9/2023
1.0.61 3,889 11/3/2023
1.0.60 3,247 11/1/2023
1.0.59 2,910 10/25/2023
1.0.58 3,232 10/17/2023
1.0.57 2,435 10/13/2023
1.0.56 299 10/13/2023
1.0.55 2,824 10/11/2023
1.0.54 4,967 9/18/2023
1.0.53 233 9/18/2023
1.0.52 3,316 9/13/2023
1.0.51 3,792 8/30/2023
1.0.50 7,411 8/17/2023
1.0.49 3,463 8/9/2023
1.0.48 3,163 8/7/2023
1.0.47 4,913 7/12/2023
1.0.46 2,448 7/7/2023
1.0.45 296 7/7/2023
1.0.44 4,546 6/28/2023
1.0.43 3,319 6/23/2023
1.0.42 1,155 6/22/2023
1.0.41 1,675 6/20/2023
1.0.40 2,306 6/14/2023
1.0.39 3,544 6/7/2023
1.0.38 3,700 6/2/2023
1.0.37 8,195 5/24/2023
1.0.36 912 5/23/2023
1.0.35 1,847 5/23/2023
1.0.34 999 5/23/2023
1.0.33 289 5/23/2023
1.0.32 646 5/22/2023
1.0.31 2,084 5/17/2023
1.0.30 1,671 5/11/2023
1.0.29 1,504 4/21/2023
1.0.28 2,377 4/12/2023
1.0.27 1,353 4/3/2023
1.0.26 1,649 3/23/2023
1.0.16 11,662 3/9/2023
1.0.15 985 2/23/2023
1.0.10 2,757 1/19/2023
1.0.9 491 1/16/2023
1.0.6 4,792 6/5/2022
1.0.5 572 6/4/2022
1.0.4 541 6/4/2022
1.0.3 549 6/4/2022
1.0.0 743 1/16/2023