ChessDotNet.Tests.ChessGameTests.TestFenCastlingFieldAfterRookCapture_BlackKingside C# (CSharp) Method

TestFenCastlingFieldAfterRookCapture_BlackKingside() private method

        public static void TestFenCastlingFieldAfterRookCapture_BlackKingside()
        {
            ChessGame game = new ChessGame("rnbqkbnr/p1pppp1p/1p4p1/8/8/1P6/PBPPPPPP/RN1QKBNR w KQkq - 0 3");
            game.ApplyMove(new Move("b2", "h8", Player.White), true);
            Assert.False(game.CanBlackCastleKingSide);
            Assert.AreEqual("rnbqkbnB/p1pppp1p/1p4p1/8/8/1P6/P1PPPPPP/RN1QKBNR b KQq - 0 3", game.GetFen());
        }
ChessGameTests