Tagged Questions
3
votes
1answer
87 views
How to deal with changes that need further testing while working on another test?
TDD means to test before you start writing production code. So I start writing a test for MyClass called MyClassTest. It fails and I start to implement the wanted functionality in MyClass.
During the ...