I am trying to practice TDD.
My understanding is that TDD should go like this
- Write a test list for the interface/class I am going to develop.
- Start with the easiest not implemented test from my test list.
- Write the test, no implementation code yet.
- Write the interface of the class to make the code compile.
- Run the test resulting in one failing test.
- Write the implementation making the test pass.
- Refactor the mess I've made code.
- Goto 2.
The problem I have is when arriving at point 6 & 7, sometimes (often) I come to the conclusion that the implementation I just wrote should be delegated to another class.
What should a true TDD'r do at this point?
- Leave the existing test list alone for a while and create a new one
for the new class. (the same problem can manifest itself when implementing the new class) - Go the Interaction Based way of testing and Mock the new class, continue with the testcases of the class you are working on and come back later to create a correct implementation of the mocked class.
- This situation should not present itself, I have not thought out my initial design well enough. (wouldn't that defeat one of the purposes of TDD).
I'd love to know how other people handle these situations.