예제 #1
0
        public void Bishop_CannotBe_PromotionCandidate()
        {
            var board  = new Board();
            var bishop = new Bishop(Player.White);

            board.AddPiece(Square.At(0, 1), bishop);
            bishop.IsPromotionCandidate(board).Should().BeFalse();
        }