Przeglądaj źródła

Update POLICIES.md

Stuart Kent 9 lat temu
rodzic
commit
cba6ad34ec
1 zmienionych plików z 4 dodań i 2 usunięć
  1. 4
    2
      POLICIES.md

+ 4
- 2
POLICIES.md Wyświetl plik

@@ -34,8 +34,10 @@ References: [[1](https://github.com/exercism/xjava/issues/177#issuecomment-26129
34 34
 
35 35
 ### Starter implementations
36 36
 
37
-> - Exercises 1-10: provide stubs for all required methods.
38
-> - Exercises 11-20: provide stubs for all methods required by the first test; comment-out the bodies of any tests that require non-stubbed methods.
37
+> - Exercises 1-10: provide stubs for all required methods. Stubs should include the following body:
38
+    `throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");`
39
+> - Exercises 11-20: provide stubs for all methods required by the first test; comment-out the bodies of any tests that require non-stubbed methods. Stubs should include the following body:
40
+    `throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");`
39 41
 > - Exercises 21+: provide no stubs, but mention any "interesting" interface aspects in the HINT.md file (which gets merged into the README.md for the exercise).
40 42
 
41 43
 References: [[1](https://github.com/exercism/xjava/issues/178)]