Meziantou.Framework.InlineSnapshotTesting 3.0.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Meziantou.Framework.InlineSnapshotTesting --version 3.0.1
NuGet\Install-Package Meziantou.Framework.InlineSnapshotTesting -Version 3.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Meziantou.Framework.InlineSnapshotTesting" Version="3.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Meziantou.Framework.InlineSnapshotTesting --version 3.0.1
#r "nuget: Meziantou.Framework.InlineSnapshotTesting, 3.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Meziantou.Framework.InlineSnapshotTesting as a Cake Addin
#addin nuget:?package=Meziantou.Framework.InlineSnapshotTesting&version=3.0.1

// Install Meziantou.Framework.InlineSnapshotTesting as a Cake Tool
#tool nuget:?package=Meziantou.Framework.InlineSnapshotTesting&version=3.0.1

Meziantou.Framework.InlineSnapshotTesting

Meziantou.Framework.InlineSnapshotTesting is a snapshot testing library that simplifies the assertion of complex data models and documents. It is inspired by Verify.

InlineSnapshot is called on the test result during the assertion phase. It serializes that result and update the expected value. On the next test execution, the result is again serialized and compared to the existing value. The test will fail if the two snapshots do not match: either the change is unexpected, or the reference snapshot needs to be updated to the new result.

On the development machine, a diff tool prompt to compare the expected snapshot with the current snapshot. So, you can accept the new value or cancel. So, you can quickly iterate on your code and update snapshots.

Blog post: Inline Snapshot testing in .NET

How does it work

First, you can write a test with the following code:

var data = new
{
    FirstName = "Gérald",
    LastName = "Barré",
    NickName = "meziantou",
};

// No need to write the expected value
InlineSnapshot.Validate(data);

Then, run the tests. It will show you a diff tool where you can compare the expected value and the new value. Once you accept the change, the test is updated:

var data = new
{
    FirstName = "Gérald",
    LastName = "Barré",
    NickName = "meziantou",
};

InlineSnapshot.Validate(data, """
    FirstName: Gérald,
    LastName: Barré,
    NickName: meziantou
    """);

Other features

Configuration

You can configure the default behavior of Validate() by settings InlineSnapshotSettings.Default. In the case of unit tests, you may want to update the configuration before running tests. You can use a ModuleInitializer to do so.

static class AssemblyInitializer
{
    [ModuleInitializer]
    public static void Initialize()
    {
        InlineSnapshotSettings.Default = InlineSnapshotSettings.Default with
        {
            SnapshotUpdateStrategy = SnapshotUpdateStrategy.MergeTool,
            MergeTools = [MergeTool.VisualStudioCode],
        };
    }
}

You can also set the configuration per assert.

// InlineSnapshotSettings is a record, so you can use the "with" keyword to create a new instance
var settings = InlineSnapshotSettings.Default with
{
    SnapshotUpdateStrategy = SnapshotUpdateStrategy.Overwrite,
};

InlineSnapshot.CreateBuilder()
    .WithSettings(settings)
    .Validate(data, "");

Environment variables

  • DiffEngine_Tool: Set the default merge tool
  • DiffEngine_Disabled: Disable the diff tool even if set explicitly in the configuration

Using helper methods

If you want to use helper methods before calling Validate(), you need to decorate the methods with [InlineSnapshotAssertion] and use [CallerFilePath] and [CallerLineNumber].

Helper(""); // This string will be updated
            
[InlineSnapshotAssertion(nameof(expected))]
static void Helper(string expected, [CallerFilePath] string filePath = null, [CallerLineNumber] int lineNumber = -1)
{
    InlineSnapshot.Validate(new object(), expected, filePath, lineNumber);
}

Examples

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Framework net472 is compatible.  net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Meziantou.Framework.InlineSnapshotTesting:

Package Downloads
FunFair.Test.Common

FunFair Common Test Infrastructure for building xUnit tests on top of.

Meziantou.Framework.InlineSnapshotTesting.Serializers.Argon The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Serializer based on Argon for Meziantou.Framework.InlineSnapshotTesting

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.1 2,627 3/29/2024
3.0.0 12,740 1/6/2024
2.0.2 991 1/3/2024
2.0.1 2,378 12/29/2023
2.0.0 5,031 12/15/2023
1.0.28 2,804 12/6/2023
1.0.27 188 11/15/2023
1.0.26 174 9/29/2023
1.0.25 115 9/29/2023
1.0.24 287 7/22/2023
1.0.23 163 7/18/2023
1.0.22 157 7/10/2023
1.0.20 124 7/10/2023
1.0.19 337 5/31/2023
1.0.17 134 5/31/2023
1.0.16 124 5/30/2023
1.0.15 133 5/30/2023
1.0.14 124 5/27/2023
1.0.13 193 5/25/2023
1.0.12 128 5/25/2023
1.0.11 156 5/24/2023
1.0.9 190 4/28/2023
1.0.8 157 4/27/2023
1.0.7 165 4/25/2023
1.0.6 160 4/21/2023
1.0.5 175 4/12/2023
1.0.4 192 4/1/2023
1.0.3 214 3/24/2023
1.0.2 197 3/21/2023
1.0.1 209 3/19/2023
1.0.0 265 3/13/2023