Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
13answers
551 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 you want to test? ...
3
votes
7answers
365 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, because many of the tests ...
0
votes
1answer
126 views

Java/Swing FEST test fails absurdly

I have a test that sometimes fails on the requireSelected() call, and I can't figure out why. public void testSimple() { JRadioButtonFixture fixture = getFixture(); fixture.check(); ...