Beispiel #1
0
 @Test
 public void test_example_c() {
   robot.place(1, 2, DirectionKind.EAST);
   robot.move();
   robot.move();
   robot.left();
   robot.move();
   org.junit.Assert.assertEquals("3,3,NORTH", robot.report());
 }
Beispiel #2
0
 @Test
 public void test_example_b() {
   robot.place(0, 0, DirectionKind.NORTH);
   robot.left();
   org.junit.Assert.assertEquals("0,0,WEST", robot.report());
 }