Procházet zdrojové kódy

robot-name: add hint to @Ignore annotations

morrme před 9 roky
rodič
revize
9834253dda

+ 2
- 2
exercises/robot-name/src/test/java/RobotTest.java Zobrazit soubor

@@ -22,13 +22,13 @@ public class RobotTest {
22 22
         assertIsValidName(robot.getName());
23 23
     }
24 24
 
25
-    @Ignore
25
+    @Ignore("Remove to run test")
26 26
     @Test
27 27
     public void differentRobotsHaveDifferentNames() {
28 28
         assertThat(robot.getName(), not(equalTo(new Robot().getName())));
29 29
     }
30 30
 
31
-    @Ignore
31
+    @Ignore("Remove to run test")
32 32
     @Test
33 33
     public void resetName() {
34 34
         final String name = robot.getName();