Ejemplo n.º 1
0
        public void GivenDirectionNorth_WhenTurnLeft_ShouldDirectionWest()
        {
            var direction    = new North();
            var newdirection = direction.Left().ToString();
            var expected     = new West().ToString();

            Assert.Equal(expected, newdirection);
        }