예제 #1
0
        public void GivenDirectionSouth_WhenTurnRight_ShouldDirectionWest()
        {
            var direction    = new South();
            var newdirection = direction.Right().ToString();
            var expected     = new West().ToString();

            Assert.Equal(expected, newdirection);
        }