Part 2. Applying TDD to specific technologies
In part 1, you learned to test-drive plain old Java code and put a selection of handy tricks and techniques up your sleeve. Unfortunately, most of the time we won’t be lucky enough to get to work with plain old Java code for a living. Instead, we get all that enterprise stuff that they say is “impossible to test-drive.” Obviously, that’s not true; and in part 2, we’ll bust that myth, one technology at a time.
In chapter 5, we learn to test-drive Java EE web applications—not just pure Java like Java servlets and Spring controllers, but also the view templates we use for generating markup. In chapter 6, we step behind the face of our applications and learn to test and test-drive data-access code: code that operates on and manipulates data using not just raw JDBC but also Spring Framework’s JdbcTemplate and the popular Hibernate object-relational mapping framework. In chapter 7, we tread farther outside our comfort zone and sort out how to test for concurrent and otherwise unpredictable code. We finish part 2 with a full treatment of test-driving Java Swing applications, including a number of design patterns that simplify that task.