Give short concrete answer: why unit testing did NOT work out for you (your project). Will you particularly try again on a different project?
feedback
|
|
Because we didn't test everything that seemed a bit too hard to test, and everything that wasn't our work ... which in the end led to something like 15% of really unit tested code... "a bit too hard" here means code that you can't test input and output right away, because it's creating a bunch of objects behind, or accessing network resources, using timers, etc, etc I believe the code wasn't modular enough, not really adapted to unit testing | ||||
|
feedback
|
|
Unit testing has failed every time i try to start it because
| ||||
|
feedback
|
|
"Also, the unit testing in this case was largely a failure because the tests were mostly aimed at aspects of the application that were never going to change, and ignored the weakest points. In this case, the weak points were the availability of network resources and the state of the data in the production environment. All of this was mocked in the test suite, and essentially useless. This incredibly heavily unit-tested application failed miserably in the field." Was tesing of network resources really a unit test? Maybe an integration test? Maybe a system test? You do have those, don't you? I am not saying that load & stress test should not never be at unit test level, but generally not. This (as you describe it) was not a failure of uint test, but a failure of your overall test startegy. | ||||
|
feedback
|
|
It wasn't my project, but even after extensive testing the system unexpectedly failed 4 years into release because threads were used. Search for "Ptolemy" here. | ||||
|
feedback
|
|
Every programmer has to ask themseleves the question: is there any bug that could be caught by unit testing that couldn't be caught just as easily by simply using the bloody software?! Every hour you spend writing tests is an hour you could have spent fixing bugs. | ||||
|
feedback
|