Appccelerate.IO.AbsoluteFolderPathTest.SupportsInequalityOperator C# (CSharp) Method

SupportsInequalityOperator() private method

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

            bool result = a != b;

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