public void MoveWon_WinningMoves(Bl.MoveType opponentMove, Bl.MoveType myMove)
        {
            var result = _target.MoveWon(myMove, opponentMove);

            Assert.IsTrue(result);
        }
        public void MoveWon_LoosingMoves(Bl.MoveType myMove, Bl.MoveType opponentMove)
        {
            var result = _target.MoveWon(myMove, opponentMove);

            Assert.IsFalse(result);
        }