Verify.Serilog

April 9, 2026 ยท View on GitHub

Discussions Build status NuGet Status

Extends Verify to allow verification of Serilog bits.

See Milestones for release notes.

Sponsors

Entity Framework Extensions

Entity Framework Extensions is a major sponsor and is proud to contribute to the development this project.

Entity Framework Extensions

Developed using JetBrains IDEs

JetBrains logo.

NuGet

Usage

[ModuleInitializer]
public static void Initialize() =>
    VerifySerilog.Initialize();

snippet source | anchor

[Test]
public Task Usage()
{
    Recording.Start();

    var result = Method();

    return Verify(result);
}

static string Method()
{
    Log.Error("The Message");
    return "Result";
}

snippet source | anchor

Results in:

{
  target: Result,
  log: {
    Error: The Message
  }
}

snippet source | anchor