소스 검색

Update policies doc to require constructor stubbing

Stuart Kent 9 년 전
부모
커밋
32e6035303
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      POLICIES.md

+ 2
- 2
POLICIES.md 파일 보기

34
 
34
 
35
 ### Starter implementations
35
 ### Starter implementations
36
 
36
 
37
-> - Exercises 1-10: provide stubs for all required methods. Stubs should include the following body:
37
+> - Exercises 1-10: provide stubs for all required constructors and methods. Stubs should include the following body:
38
     `throw new UnsupportedOperationException("Delete this statement and write your own implementation.");`
38
     `throw new UnsupportedOperationException("Delete this statement and write 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:
39
+> - Exercises 11-20: provide stubs for all constructors and methods required by the first test; comment-out the bodies of any tests that require non-stubbed constructors or methods. Stubs should include the following body:
40
     `throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");`
40
     `throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");`
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).
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).
42
 
42