Skip to content

Latest commit

 

History

History

lesson_15

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Lesson 15: Test Driven Development (Slides)

Pre-work

Please review the following resources before lecture:

Homework

Unit Testing

For the code in the Lesson 15 app, you will write tests in the unit tests project. You must achieve a code coverage of 80% or more. The coverage report can be viewed at ./tdd/tdd_app/build/reports/jacoco/test/html/index.html after running ./gradlew check or ./gradlew jacocoTestReport.

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.