Tagged Questions

6
votes
13answers
411 views

TDD - When is it okay to write a non-failing test?

From what I understand, in TDD you have to write a failing test first, then write the code to make it pass, then refactor. But what if your code already accounts for the situation …
3
votes
7answers
303 views

How do you deal with failing Unit Tests?

I have a number of projects in a solution file that have unit tests written for them and I am wanting to set them up to be run by our continuous integration server. However, becaus …