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

SupportsInequalityOperator() private méthode

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

            bool result = a != b;

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