Explorar el Código

hello-world: explain @Ignore annotations

Frida Johanne Tveit hace 9 años
padre
commit
6cef429089
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4
    0
      exercises/hello-world/GETTING_STARTED.md

+ 4
- 0
exercises/hello-world/GETTING_STARTED.md Ver fichero

18
 $ gradle test
18
 $ gradle test
19
 ```
19
 ```
20
 
20
 
21
+To help you focus on one test at a time, [@Ignore](http://junit.sourceforge.net/javadoc/org/junit/Ignore.html)
22
+annotations have been added to every test but the first one. Any test with an `@Ignore` annotation will be skipped
23
+when you run the tests.
24
+
21
 ## Iterate through the tests
25
 ## Iterate through the tests
22
 
26
 
23
 After your first test passes, remove the `@Ignore` from the next test, and iterate on your solution,
27
 After your first test passes, remove the `@Ignore` from the next test, and iterate on your solution,