Why should unit tests test only one thing? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T23:47:50Z http://stackoverflow.com/feeds/question/235025 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing 21 Why should unit tests test only one thing? iny 2008-10-24T19:48:02Z 2009-04-21T15:34:56Z <p>What Makes a Good Unit Test? says that a test should test only one thing. What is the benefit from that?</p> <p>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. </p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing/235032#235032 35 Answer by __ for Why should unit tests test only one thing? __ 2008-10-24T19:50:04Z 2008-10-24T19:50:04Z <p>Testing only one thing will isolate that one thing and prove whether or not it works. That is the idea with unit testing. Nothing wrong with tests that test more than one thing, but that is generally referred to as integration testing. They both have merits, based on context.</p> <p>To use an example, if your bedside lamp doesn't turn on, and you replace the bulb and switch the extension cord, you don't know which change fixed the issue. Should have done unit testing, and separated your concerns to isolate the problem.</p> http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing/235034#235034 7 Answer by swilliams for Why should unit tests test only one thing? swilliams 2008-10-24T19:50:37Z 2008-10-24T19:59:24Z <p>Tests that check for more than one thing aren't usually recommended because they are more tightly coupled and brittle. If you change something in the code, it'll take longer to change the test, since there are more things to account for.</p> <p>[Edit:] Ok, say this is a sample test method:</p> <pre><code>[TestMethod] public void TestSomething() { // Test condition A // Test condition B // Test condition C // Test condition D } </code></pre> <p>If your test for condition A fails, then B, C, and D will appear to fail as well, and won't provide you with any usefulness. What if your code change would have caused C to fail as well? If you had split them out into 4 separate tests, you would know this.</p> http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing/235037#235037 2 Answer by Rob Prouse for Why should unit tests test only one thing? Rob Prouse 2008-10-24T19:51:30Z 2008-10-24T19:51:30Z <p>If you test more than one thing and the first thing you test fails, you will not know if the subsequent things you are testing pass or fail. It is easier to fix when you know everything that will fail.</p> http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing/235066#235066 7 Answer by Newtopian for Why should unit tests test only one thing? Newtopian 2008-10-24T20:00:36Z 2008-10-24T20:00:36Z <p>haaa... unit tests.</p> <p>Push any "directives" too far and it rapidely become unusable.</p> <p>Single unit test test a single thing is just as good practice as single method does a single task. But IMHO that does not mean a single test can only contain a single assert statement.</p> <p>is</p> <pre><code>@Test public void checkNullInputFirstArgument(){...} @Test public void checkNullInputSecondArgument(){...} @Test public void checkOverInputFirstArgument(){...} ... </code></pre> <p>beter than</p> <pre><code>@Test public void testLimitConditions(){...} </code></pre> <p>is question of taste in my opinion rather than good practice, I personally much prefer the latter</p> <p>but</p> <pre><code>@Test public void doesWork(){...} </code></pre> <p>is actually what the "directive" wants you to avoid at all cost and what drains my sanity the fastest...</p> <p>as final conclusion, group together things that are semantically related and easilly testable together so that a failed test message, by itself, is actually meanignfull enough for you to go directly to the code. </p> <p><strong>Rule of thumb here on a failed test report, if you have to read the test's code first then your test are not structured well enough and need more splitting into smaller tests.</strong></p> <p>my 2 cent</p> http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing/235067#235067 23 Answer by Jon Skeet for Why should unit tests test only one thing? Jon Skeet 2008-10-24T20:00:43Z 2008-10-24T20:00:43Z <p>I'm going to go out on a limb here, and say that the "only test one thing" advice isn't as actually helpful as it's sometimes made out to be.</p> <p>Sometimes tests take a certain amount of setting up. Sometimes they may even take a certain amount of <em>time</em> to set up (in the real world). Often you can test two actions in one go.</p> <p>Pro: only have all that setup occur once. Your tests after the first action will prove that the world is how you expect it to be before the second action. Less code, faster test run.</p> <p>Con: if <em>either</em> action fails, you'll get the same result: the same test will fail. You'll have less information about where the problem is than if you only had a single action in each of two tests.</p> <p>In reality, I find that the "con" here isn't much of a problem. The stack trace often narrows things down very quickly, and I'm going to make sure I fix the code anyway.</p> <p>A slightly different "con" here is that it breaks the "write a new test, make it pass, refactor" cycle. I view that as an <em>ideal</em> cycle, but one which doesn't always mirror reality. Sometimes it's simply more pragmatic to add an extra action and check (or possibly just another check to an existing action) in a current test than to create a new one.</p> <p>(I fully expect to be downvoted heavily on this answer - it's a shame it's near the end of the day instead of the start, but never mind. I hope that there will be really great reasons for my wrongheadedness in the comments, and that's more important than rep.)</p> http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing/235071#235071 1 Answer by David Arno for Why should unit tests test only one thing? David Arno 2008-10-24T20:01:25Z 2008-10-24T20:01:25Z <p>The glib - but hopefully still useful - answer is that unit = one. If you test more than one thing, then you aren't unit testing...</p> http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing/235097#235097 3 Answer by tvanfosson for Why should unit tests test only one thing? tvanfosson 2008-10-24T20:08:51Z 2008-10-24T20:08:51Z <p>Using test-driven development, you would write your tests first, then write the code to pass the test. If your tests are focused, this makes writing the code to pass the test easier. For example, I might have a method that takes a parameter. One of the things I might think of first is, what should happen if the parameter is null? It should throw a ArgumentNull exception (I think). So I write a test that checks to see if that exception is thrown when I pass a null argument. Run the test. Okay, it throws NotImplementedException. I go and fix that by changing the code to throw an ArgumentNull exception. Run my test it passes. Then I think, what happens if its too small or too big. Ah...that's two tests. I write the too small case first......</p> <p>The point is I don't think of the behavior of the method all at once. I build it incrementally (and logically) by thinking about what it should do, then implement code -- refactoring as I go to make it look pretty (elegant). This is why tests should be small and focused -- because when you are thinking about the behavior you should develop in small, understandable increments.</p> http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing/235112#235112 2 Answer by Mark Lubin for Why should unit tests test only one thing? Mark Lubin 2008-10-24T20:15:30Z 2008-10-24T20:15:30Z <p>Smaller unit test make it more clear where the issue is when they fail.</p> http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing/235234#235234 1 Answer by tablespork for Why should unit tests test only one thing? tablespork 2008-10-24T20:57:10Z 2008-10-24T20:57:10Z <p>Regarding your example: If you are testing add and remove in the same unit test, how do you verify that the item was ever added to your list? That is why you need to add and verify that it was added in one test.</p> <p>Or to use the lamp example: If you want to test your lamp and all you do is turn the switch on and then off, how do you know the lamp ever turned on? You must take the step in between to look at the lamp and verify that it is on. Then you can turn it off and verify that it turned off.</p> http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing/235654#235654 1 Answer by Ryan for Why should unit tests test only one thing? Ryan 2008-10-25T00:04:46Z 2009-02-04T21:38:48Z <p>Having tests that verify only one thing makes troubleshooting easier. It's not to say you shouldn't also have tests that do test multiple things, or multiple tests that share the same setup/teardown.</p> <p>Here should be an illustrative example. Let's say that you have a stack class with queries:</p> <ul> <li>getSize</li> <li>isEmpty</li> <li>getTop</li> </ul> <p>and methods to mutate the stack</p> <ul> <li>push(anObject)</li> <li>pop()</li> </ul> <p>Now, consider the following test case for it (I'm using python like pseudo-code for this example)</p> <pre><code>class TestCase(): def setup(): self.stack = new Stack() def test(): stack.push(1) stack.push(2) stack.pop() assert stack.top() == 1, "top() isn't showing correct object" assert stack.getSize() == 1, "getSize() call failed" </code></pre> <p>From this test case, you can determine if something is wrong, but not whether it is isolated to the push() or pop() implementations, or the queries that return values: top() and getSize().</p> <p>If we add individual test cases for each method and its behavior, things become much easier to diagnose. Also, by doing fresh setup for each test case, we can guarantee that the problem is completely within the methods that the failing test method called. def test_size(): assert stack.getSize() == 0 assert stack.isEmpty()</p> <pre><code>def test_push(): self.stack.push(1) assert stack.top() == 1, "top returns wrong object after push" assert stack.getSize() == 1, "getSize wrong after push" def test_pop(): stack.push(1) stack.pop() assert stack.getSize() == 0, "getSize wrong after push" </code></pre> <p>As far as test-driven development is concerned. I personally write larger "functional tests" that end up testing multiple methods at first, and then create unit tests as I start to implement individual pieces.</p> <p>Another way to look at it is unit tests verify the contract of each individual method, while larger tests verify the contract that the objects and the system as a whole must follow.</p> <p>I'm still using three method calls in test_push, however both top() and getSize() are queries that are tested by separate test methods.</p> <p>You could get similar functionality by adding more asserts to the single test, but then later assertion failures would be hidden.</p> http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing/511271#511271 0 Answer by Dave Cameron for Why should unit tests test only one thing? Dave Cameron 2009-02-04T13:10:19Z 2009-02-04T13:10:19Z <p>I support the idea that unit tests should only test one thing. I also stray from it quite a bit. Today I had a test where expensive setup seemed to be forcing me to make more than one assertion per test. </p> <pre><code>namespace Tests.Integration { [TestFixture] public class FeeMessageTest { [Test] public void ShouldHaveCorrectValues { var fees = CallSlowRunningFeeService(); Assert.AreEqual(6.50m, fees.ConvenienceFee); Assert.AreEqual(2.95m, fees.CreditCardFee); Assert.AreEqual(59.95m, fees.ChangeFee); } } } </code></pre> <p>At the same time, I really wanted to see all my assertions that failed, not just the first one. I was expecting them all to fail, and I needed to know what amounts I was really getting back. But, a standard [SetUp] with each test divided would cause 3 calls to the slow service. Suddenly I remembered an article suggesting that using "unconventional" test constructs is where half the benefit of unit testing is hidden. (I think it was a Jeremy Miller post, but can't find it now.) Suddenly [TestFixtureSetUp] popped to mind, and I realized I could make a single service call but still have separate, expressive test methods.</p> <pre><code>namespace Tests.Integration { [TestFixture] public class FeeMessageTest { Fees fees; [TestFixtureSetUp] public void FetchFeesMessageFromService() { fees = CallSlowRunningFeeService(); } [Test] public void ShouldHaveCorrectConvenienceFee() { Assert.AreEqual(6.50m, fees.ConvenienceFee); } [Test] public void ShouldHaveCorrectCreditCardFee() { Assert.AreEqual(2.95m, fees.CreditCardFee); } [Test] public void ShouldHaveCorrectChangeFee() { Assert.AreEqual(59.95m, fees.ChangeFee); } } } </code></pre> <p>There is more code in this test, but it provides much more value by showing me all the values that don't match expectations at once.</p> <p>A colleague also pointed out that this is a bit like Scott Bellware's specunit.net: <a href="http://code.google.com/p/specunit-net/" rel="nofollow">http://code.google.com/p/specunit-net/</a></p> http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing/511328#511328 0 Answer by Mo Flanagan for Why should unit tests test only one thing? Mo Flanagan 2009-02-04T13:24:01Z 2009-02-04T13:24:01Z <p>Another practical disadvantage of very granular unit testing is that it breaks the DRY principle. I have worked on projects where the rule was that each public method of a class had to have a unit test (a [TestMethod]). Obviously this added some overhead every time you created a public method but the real problem was that it added some "friction" to refactoring.</p> <p>Its similar to method level documentation, its nice to have but its another thing that has to be maintained and it makes changing a method signature or name a little more cumbersome and slows down <a href="http://amstel.cs.pdx.edu/Members/emerson/IEEESoftware08.pdf" rel="nofollow">"floss refactoring" (PDF)</a>.</p> <p>Like most things in design, there is a trade off that the phrase "a test should test only one thing" doesn't capture.</p> http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing/773213#773213 1 Answer by Bealer for Why should unit tests test only one thing? Bealer 2009-04-21T15:34:56Z 2009-04-21T15:34:56Z <p>Think of building a car. If you were to apply your theory, of just testing big things, then why not make a test to drive the car through a desert. It breaks down. Ok, so tell me what caused the problem. You can't. That's a scenario test.</p> <p>A functional test may be to turn on the engine. It fails. But that could be because of a number of reasons. You still couldn't tell me exactly what caused the problem. We're getting closer though.</p> <p>A unit test is more specific, and will firstly identify where the code is broken, but it will also (if doing proper TDD) help architect your code into clear, modular chunks.</p> <p>Someone mentioned about using the stack trace. Forget it. That's a second resort. Going through the stack trace, or using debug is a pain and can be time consuming. Especially on larger systems, and complex bugs.</p> <p>Good characteristics of a unit test:</p> <ul> <li>Fast (milliseconds)</li> <li>Independent. It's not affected by or dependent on other tests</li> <li>Clear. It shouldn't be bloated, or contain a huge amount of setup.</li> </ul>