Skip to content

Commit

Permalink
Merge pull request #407 from corgibytes/add-verify-diffplex
Browse files Browse the repository at this point in the history
Adds Verify.DiffPlex to improve output
  • Loading branch information
mscottford authored Nov 4, 2021
2 parents 26239f3 + 7ff2a5f commit 6c9cf58
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<PackageReference Include="DiffEngine" Version="8.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="Moq" Version="4.16.1" />
<PackageReference Include="Verify.DiffPlex" Version="1.0.0" />
<PackageReference Include="Verify.Xunit" Version="14.0.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
Expand Down
14 changes: 14 additions & 0 deletions Corgibytes.Freshli.Lib.Test/Initializer.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System.Runtime.CompilerServices;
using VerifyTests;

namespace Corgibytes.Freshli.Lib.Test
{
public class Initializer
{
[ModuleInitializer]
public static void Initialize()
{
VerifyDiffPlex.Initialize();
}
}
}

0 comments on commit 6c9cf58

Please sign in to comment.