ChessDotNet.Tests.PositionTests.TestInequalityDifferentType C# (CSharp) Méthode

TestInequalityDifferentType() private méthode

private TestInequalityDifferentType ( ) : void
Résultat 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");
        }