public void GivenDirectionEast_WhenTurnLeft_ShouldDirectionNorth() { var direction = new East(); var newdirection = direction.Left().ToString(); var expected = new North().ToString(); Assert.Equal(expected, newdirection); }