October 2023
Intermediate to advanced
384 pages
9h 12m
English
Now let’s look at another traditional TDD exercise: the Bowling Game kata. What follows is a much-abbreviated version of that kata that appeared in Clean Craftsmanship.1 A related video, Bowling Game, is also available. You can access the video by registering at https://informit.com/functionaldesign.
1. Robert C. Martin, Clean Craftsmanship (Addison-Wesley, 2021).
We begin, as always, with a test that does nothing, just to prove we can compile and execute:
public class BowlingTest {
@Test
public void nothing() throws Exception {
}
}
Next, we assert that we can create an instance of ...
Read now
Unlock full access