ChessDotNet.Variants.Tests.HordeChessGameTests.TestValidEnPassantCaptureBlack C# (CSharp) 메소드

TestValidEnPassantCaptureBlack() 개인적인 메소드

private TestValidEnPassantCaptureBlack ( ) : void
리턴 void
        public static void TestValidEnPassantCaptureBlack()
        {
            HordeChessGame game = new HordeChessGame("rnbqk1nr/pppp1ppp/5P2/PP1PPPP1/P1P3pP/1P1PP1PP/P1PPPPPP/bPPPPPPP w kq - 0 9");
            game.ApplyMove(new Move("F2", "F4", Player.White), true);
            Assert.True(game.IsValidMove(new Move("G4", "F3", Player.Black)));
        }