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
ExpectedFilePathstringAbsolute path to the expected baseline file.
ActualFilePathstringAbsolute 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
ExpectedFilePath
Absolute path to the expected baseline file.
public string ExpectedFilePath { get; init; }