public void Test_LeftAfterPlaceCmd() { Robot robot = new Robot(); PlaceAtOrigin(robot); robot.Left(); Assert.AreEqual(robot.Face, Direction.West); }
public void Test_LeftBeforePlaceCmd() { Robot robot = new Robot(); Assert.IsFalse(robot.Left()); }