Esempio n. 1
0
        public void MovePlayerSevenSpaces()
        {
            var initialLocation = 0;

            player.Location = initialLocation;
            var spacesToMove = 7;

            movementService.MovePlayer(player, spacesToMove);

            Assert.AreEqual(spacesToMove, player.Location);
        }