What is the one most common mistake you make while writing unit tests? Coupling? Lack of cohesion? Try to test too much functionality at once? Not testing enough functionality?
Post some example code if you have an example of that mistake
|
7
|
What is the one most common mistake you make while writing unit tests? Coupling? Lack of cohesion? Try to test too much functionality at once? Not testing enough functionality? Post some example code if you have an example of that mistake |
||
|
|
|
|
Not writing them at all. |
||
|
|
|
|
Testing too much in one test. My unit tests often take on more of the character of integration tests by not confining themselves to the method under test. |
||
|
|
|
|
Testing code that is present, rather than code that should be present. I tend to test code that is present when writing unit tests. That is, I'll write a series of tests that have exceptionally high coverage and test the majority of the code that's present, but misses out on basic error conditions not covered by the code. |
|||
|
|
|
|
Writing tests that are too coupled to the code they are testing. This is especially true where I am relying on semantic coupling and things that I just assume to work for the class. |
||
|
|
|
|
Lack of coverage -- I rarely test all the cases I should on my first pass. |
||
|
|
|
|
Relying on some implementation detail which is not part of the tested functionality and that might change later on in the development. |
|||
|
|
|
|
Forgetting to put in the rounding error allowance in double comparison is probably my biggest and most annoying mistake. |
||
|
|
|
|
Testing using just some random values instead of including testing with equivalence partitioning and boundary value analysis. |
||
|
|
|
|
Making two integration points tightly coupled by not using a mock object or framework. |
||
|
|
|
|
Not getting the test fixtures neat and tidy enough - so writing the tests is harder than it should be. |
||
|
|
|
|
Writing tests that are neither unit tests( testing only the specific method) nor acceptance tests( testing from user's perspective). I find that tests that testing 3-4 layers of code in one test that is not grounded at concepts that biz people understand, usually lead to tests that are a burden to maintain and make people get disappointed and turned off by automated testing. |
||
|
|
|
|
Leaving out some small detail (e.g. a hex to dec function where the unit test didn't have any letters in it...) |
||
|
|
|
|
Well, I sometimes miss out putting out the [Test] C# attribute, and the test doesn't even get run :) |
||
|
|
|
|
Not writing them first (ie. not going the Test Driven route) |
||
|
|
|
|
Hey, you know what? http://msdn.microsoft.com/en-us/magazine/cc163665.aspx |
||
|
|
|
Unit tests with only partial code coverage. The tests succeed, so I'm feeling good. Things are working. I move on to something else. Turns out there's an untested corner case. |
||
|
|
|
Tests that depend on a quirk of the OS you happen to be on, or an unintentional side effect of a previous test. |
||
|
|