ChessDotNet.Tests.PositionTests.TestInequalityDifferentType C# (CSharp) Method

TestInequalityDifferentType() private method

private TestInequalityDifferentType ( ) : void
return void
        public static void TestInequalityDifferentType()
        {
            Position position1 = new Position(File.D, 3);
            string str = "abc";
            Assert.False(position1.Equals(str), "position1.Equals(str) should be false");
        }