- Coverage
- Unit
- Integration
- Javascript
- Functional
- Lines of code
- Files
Introductio:
Feedback Is the Fundamental Tool:
class Book { | |
String title; | |
String author; | |
Date date; | |
} | |
Book book1 = new Book("Refactoring", "Martin Fowler", new Date()); | |
Book book2 = new Book("Clean code", "Robert C. Martin", new Date()); | |
Book book3 = new Book("Test Driven Development", "Kent Beck", new Date()); |