Acklann.Diffa by Ackara

<PackageReference Include="Acklann.Diffa" Version="1.1.1" />

 Acklann.Diffa 1.1.1

Diffa is a .netstandard unit-test assertion library that allows you to verify your test results against approved files. Inspired by [ApprovalTests](https://github.com/approvals/ApprovalTests.Net), Diffa will also automatically launch your favorite diff tool when an assertion fails so you can compare approve the results. ## Basic Use [TestClass] [SaveFilesAt("Approved/")] [Use(typeof(DiffReporter))] public class UnitTests [TestMethod] public void Ensure_results_is_well_formed() => Diff.Approve("This is my test results.");

<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
  <metadata>
    <id>Acklann.Diffa</id>
    <version>1.1.1</version>
    <title>Diffa</title>
    <authors>Ackara</authors>
    <owners>Ackara</owners>
    <requireLicenseAcceptance>false</requireLicenseAcceptance>
    <license type="file">license.txt</license>
    <licenseUrl>https://aka.ms/deprecateLicenseUrl</licenseUrl>
    <icon>icon.png</icon>
    <projectUrl>https://github.com/Ackara/Diffa</projectUrl>
    <description>Diffa is a .netstandard unit-test assertion library that allows you to verify your test results against approved files. Inspired by [ApprovalTests](https://github.com/approvals/ApprovalTests.Net), Diffa will also automatically launch your favorite diff tool when an assertion fails so you can compare approve the results.

## Basic Use

[TestClass]
[SaveFilesAt("Approved/")]
[Use(typeof(DiffReporter))]
public class UnitTests

    [TestMethod]
    public void Ensure_results_is_well_formed()
      =&gt; Diff.Approve("This is my test results.");</description>
    <releaseNotes>https://github.com/Ackara/Diffa/blob/master/changelog.md</releaseNotes>
    <copyright>Copyright 2020 Ackara, All Rights Reserved.</copyright>
    <tags>approval test unit-testing diff compare approvals verify testing</tags>
    <repository type="git" url="https://github.com/Ackara/Diffa.git" />
    <dependencies>
      <group targetFramework=".NETStandard2.0">
        <dependency id="System.Memory" version="4.5.1" exclude="Build,Analyzers" />
      </group>
    </dependencies>
  </metadata>
</package>