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

TestFenCastlingFieldAfterRookExplosion_BlackQueenside() private method

        public void TestFenCastlingFieldAfterRookExplosion_BlackQueenside()
        {
            AtomicChessGame game = new AtomicChessGame("rnbqkbnr/pp2pppp/8/1Npp4/8/8/PPPPPPPP/R1BQKBNR w KQkq - 0 3");
            game.ApplyMove(new Move("b5", "a7", Player.White), true);
            Assert.False(game.CanBlackCastleQueenSide);
            Assert.AreEqual("2bqkbnr/1p2pppp/8/2pp4/8/8/PPPPPPPP/R1BQKBNR b KQk - 0 3", game.GetFen());
        }