ChessDotNet.Variants.Tests.RacingKingsChessGameTests.TestIsStalematedWhite C# (CSharp) Method

TestIsStalematedWhite() private method

private TestIsStalematedWhite ( ) : void
return void
        public static void TestIsStalematedWhite()
        {
            RacingKingsChessGame game = new RacingKingsChessGame("4r3/6K1/8/1k3qb1/8/8/8/3n4 w - - 0 18");
            Assert.True(game.IsStalemated(Player.White));
            Assert.True(game.IsDraw());
        }
    }