Kaynağa Gözat

Merge pull request #639 from FridaTveit/AddIgnoreGuidanceToHelloWorld

hello-world: explain @Ignore annotations
Stuart Kent 9 yıl önce
ebeveyn
işleme
793943c806
1 değiştirilmiş dosya ile 4 ekleme ve 0 silme
  1. 4
    0
      exercises/hello-world/GETTING_STARTED.md

+ 4
- 0
exercises/hello-world/GETTING_STARTED.md Dosyayı Görüntüle

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,