ChessDotNet.Variants.Tests.HordeChessGameTests.TestInvalidEnPassantCaptureBlack C# (CSharp) Method

TestInvalidEnPassantCaptureBlack() private method

private TestInvalidEnPassantCaptureBlack ( ) : void
return void
        public static void TestInvalidEnPassantCaptureBlack()
        {
            HordeChessGame game = new HordeChessGame("rnbq3r/pppp1kpp/5P1n/1P1P1P1P/P1P1PPP1/1PPPP1pP/PbPPP1PP/PPPPPPPP w - - 0 10");
            game.ApplyMove(new Move("F1", "F3", Player.White), true);
            Assert.False(game.IsValidMove(new Move("G3", "F2", Player.Black)));
        }