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

SupportsEqualityOperator() private method

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

            bool result = a == b;

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