Просмотр исходного кода

robot-name: add hint to @Ignore annotations

morrme 9 лет назад
Родитель
Сommit
9834253dda
1 измененных файлов: 2 добавлений и 2 удалений
  1. 2
    2
      exercises/robot-name/src/test/java/RobotTest.java

+ 2
- 2
exercises/robot-name/src/test/java/RobotTest.java Просмотреть файл

@@ -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();