show/hide this revision's text 5 edited tags
show/hide this revision's text 4 edited title

Why should unit test tests test only one thing?

show/hide this revision's text 3 Added details.

What Makes a Good Unit Test? says that a test should test only one thing. What is the benefit from that?

Wouldn't it be better to write a bit bigger tests that test bigger block of code? Investigating a test failure is anyway hard and I don't see help to it from smaller tests.

Edit: The word unit is not that important. Let's say I consider the unit a bit bigger. That is not the issue here. The real question is why make a test or more for all methods as few tests that cover many methods is simpler.

An example: A list class. Why should I make separate tests for addition and removal? A one test that first adds then removes sounds simpler.

show/hide this revision's text 2 edited tags
show/hide this revision's text 1