예제 #1
0
        public void GivenDirectionSouth_WhenTurnLeft_ShouldDirectionEast()
        {
            var direction    = new South();
            var newdirection = direction.Left().ToString();
            var expected     = new East().ToString();

            Assert.Equal(expected, newdirection);
        }