14 lines
469 B
C#
14 lines
469 B
C#
namespace NATS.Server.Tests;
|
|
|
|
public class DifferencesParityClosureTests
|
|
{
|
|
[Fact]
|
|
public void Differences_md_has_no_remaining_baseline_n_or_stub_rows_in_tracked_scope()
|
|
{
|
|
var report = Parity.ParityRowInspector.Load("differences.md");
|
|
report.UnresolvedRows.ShouldBeEmpty(string.Join(
|
|
Environment.NewLine,
|
|
report.UnresolvedRows.Select(r => $"{r.Section} :: {r.SubSection} :: {r.Feature} [{r.DotNetStatus}]")));
|
|
}
|
|
}
|