Exemplo n.º 1
0
        public void AssertThatIllegalMoveIsDetected(int horizontal, int vertical)
        {
            var isIllegal = movementService.CheckForIllegalMove(horizontal, vertical);

            Assert.True(isIllegal);
        }