VerifyTests / Verify.ZeroLog

Extends Verify to allow verification of ZeroLog bits.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Verify.ZeroLog

Discussions Build status NuGet Status

Extends Verify to allow verification of ZeroLog bits.

See Milestones for release notes.

NuGet package

https://nuget.org/packages/Verify.ZeroLog/

Usage

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

snippet source | anchor

[Fact]
public Task Usage()
{
    Recording.Start();
    var result = Method();

    return Verify(result);
}

static string Method()
{
    var logger = LogManager.GetLogger<Tests>();
    logger.Error("The error");
    logger.Warn("The warning");
    return "Result";
}

snippet source | anchor

Results in:

{
  target: Result,
  log: [
    {
      Error: The error,
      Logger: Tests
    },
    {
      Warn: The warning,
      Logger: Tests
    }
  ]
}

snippet source | anchor

About

Extends Verify to allow verification of ZeroLog bits.

License:MIT License


Languages

Language:C# 100.0%