Appccelerate.IO.AbsoluteFolderPathTest.SupportsEquals C# (CSharp) Méthode

SupportsEquals() private méthode

private SupportsEquals ( string aa, string bb, bool expected ) : void
aa string
bb string
expected bool
Résultat void
        public void SupportsEquals(string aa, string bb, bool expected)
        {
            AbsoluteFolderPath a = aa;
            AbsoluteFolderPath b = bb;

            bool result = a == b;

            result.Should().Be(expected);
        }
    }