Appccelerate.IO.AbsoluteFolderPathTest.SupportsInequalityOperator C# (CSharp) 메소드

SupportsInequalityOperator() 개인적인 메소드

private SupportsInequalityOperator ( string aa, string bb, bool expected ) : void
aa string
bb string
expected bool
리턴 void
        public void SupportsInequalityOperator(string aa, string bb, bool expected)
        {
            AbsoluteFolderPath a = aa;
            AbsoluteFolderPath b = bb;

            bool result = a != b;

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