1 write to Path
Microsoft.NET.TestFramework (1)
Utilities\FileThumbPrint.cs (1)
14
Path
= path;
13 references to Path
Microsoft.NET.Sdk.BlazorWebAssembly.Tests (7)
WasmBuildIncrementalismTest.cs (7)
50
actual.
Path
.Equals(first.
Path
).Should().BeTrue($"because {actual.
Path
} should match {first.
Path
} on build {i}");
51
actual.Hash.Equals(first.Hash).Should().BeTrue($"because {actual.Hash} should match {first.Hash} for {first.
Path
} on build {i}");
52
actual.LastWriteTimeUtc.Equals(first.LastWriteTimeUtc).Should().BeTrue($"because {actual.LastWriteTimeUtc} should match {first.LastWriteTimeUtc} for {first.
Path
} on build {i}");
95
thumbPrint[j].Equals(newThumbPrint[j]).Should().BeTrue($"because {thumbPrint[j].Hash} should be the same as {newThumbPrint[j].Hash} for file {thumbPrint[j].
Path
}");
Microsoft.NET.TestFramework (6)
Utilities\FileThumbPrint.cs (6)
52
thumbprintLookup.Sort(Comparer<FileThumbPrint>.Create((a, b) => StringComparer.Ordinal.Compare(a.
Path
, b.
Path
)));
59
string.Equals(
Path
, other?.
Path
, StringComparison.Ordinal) &&
67
return HashCode.Combine(
Path
, LastWriteTimeUtc, Hash);
79
return $"{Hash} - {LastWriteTimeUtc.ToShortDateString()} - {
Path
}";