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

            Assert.Equal(expected, newdirection);
        }