瀏覽代碼

Merge pull request #639 from FridaTveit/AddIgnoreGuidanceToHelloWorld

hello-world: explain @Ignore annotations
Stuart Kent 9 年之前
父節點
當前提交
793943c806
共有 1 個檔案被更改,包括 4 行新增0 行删除
  1. 4
    0
      exercises/hello-world/GETTING_STARTED.md

+ 4
- 0
exercises/hello-world/GETTING_STARTED.md 查看文件

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,