Table of Contents

Struct SnapshotPaths

Namespace
SnapshotAssertions
Assembly
SnapshotAssertions.dll

The pair of paths a snapshot comparison reads from and writes to.

public readonly record struct SnapshotPaths : IEquatable<SnapshotPaths>
Implements
Inherited Members

Constructors

SnapshotPaths(string, string)

The pair of paths a snapshot comparison reads from and writes to.

public SnapshotPaths(string ExpectedFilePath, string ActualFilePath)

Parameters

ExpectedFilePath string

Absolute path to the expected baseline file.

ActualFilePath string

Absolute path to the actual file written on mismatch or no-baseline.

Properties

ActualFilePath

Absolute path to the actual file written on mismatch or no-baseline.

public string ActualFilePath { get; init; }

Property Value

string

ExpectedFilePath

Absolute path to the expected baseline file.

public string ExpectedFilePath { get; init; }

Property Value

string