Extends Verify to allow verification of Serilog bits.
See Milestones for release notes.
Entity Framework Extensions is a major sponsor and is proud to contribute to the development this project.
[ModuleInitializer]
public static void Initialize() =>
    VerifySerilog.Initialize();[Test]
public Task Usage()
{
    Recording.Start();
    var result = Method();
    return Verify(result);
}
static string Method()
{
    Log.Error("The Message");
    return "Result";
}Results in:
{
  target: Result,
  log: {
    Error: The Message
  }
}