You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lesson_15/README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,8 +14,9 @@ Please review the following resources before lecture:
14
14
15
15
### Unit Testing
16
16
17
-
For the code in the Lesson 15 app, you will write tests in the [unit tests project][unit-tests-link]. You must write *at least* 5 tests for each of the `Employee` and `EmployeeManager` classes (10 tests minimum). Each class must have it's own corresponding test file.
17
+
For the code in the Lesson 15 app, you will write tests in the [unit tests project][unit-tests-link]. You must achieve a code coverage of 90% or more. The coverage report can be viewed at [./tdd/tdd_app/build/reports/jacoco/test/html/index.html][coverage-report] after running `./gradlew check` or `./gradlew jacocoTestReport`.
18
18
19
19
In addition to writing unit tests, you will need to implement a new method on the `Employee` class called `getDetails` that returns a string describing the employee using the Test-Driven Development methodology.
0 commit comments