with JUnit and Mockito
Tomek Kaczanowski
Unit_Testing#
JUnit#
Mockito#
TDD#
This book explains in detail how to implement unit tests using two very popular open source Java technologies: JUnit and Mockito. It presents a range of techniques necessary to write high quality unit tests - e.g. mocks, parametrized tests and matchers. It also discusses trade-offs related to the choices we have to make when dealing with some real-life code issues.
The book stresses the importance of writing readable and maintainable unit tests, and puts a lot of stress on code quality. It shows how to achieve testable code and to eliminate common mistakes by following the Test Driven Development approach. Every topic discussed in the book is illustrated with code examples, and each chapter is accompanied by some exercises.
By reading this book you will:
Nowadays every developer is expected to write unit tests. While simple in theory, in practice writing high-quality unit tests can turn out to be a real challenge. This book will help.
Table of Contents
I. Developers' Tests
1. On Tests and Tools
2. Unit Tests
II. Writing Unit Tests
3. Unit Tests with no Collaborators
4. Test Driven Development
5. Mocks, Stubs, and Dummies
III. Hints and Discussions
6. Beyond Assertions
7. Things You Should Know
8. Points of Controversy
IV. Listen and Organize
9. Getting Feedback
10. Organization Of Tests
V. Make Them Better
11. Maintainable Tests
12. Test Quality
A. Automated Tests
B. Fluent Assertions
C. JUnit Assertions
D. Running Unit Tests
E. Where Should I Go Now?