ChessDotNet.Variants.Tests.AtomicChessGameTests.TestFenCastlingFieldAfterRookExplosion_BlackKingside C# (CSharp) Method

TestFenCastlingFieldAfterRookExplosion_BlackKingside() private method

        public void TestFenCastlingFieldAfterRookExplosion_BlackKingside()
        {
            AtomicChessGame game = new AtomicChessGame("rnbqkbnr/ppp3pp/3pp3/5pN1/8/4P3/PPPP1PPP/RNBQKB1R w KQkq - 0 4");
            game.ApplyMove(new Move("g5", "h7", Player.White), true);
            Assert.False(game.CanBlackCastleKingSide);
            Assert.AreEqual("rnbqkb2/ppp3p1/3pp3/5p2/8/4P3/PPPP1PPP/RNBQKB1R b KQq - 0 4", game.GetFen());
        }