I have been given the tasks of re-organization and documentation of a bunch of JUnit tests, about 1800, that have very little documentation and are not organized very well. Does anyone know the best practice for organizing unit tests and keeping the documentation for them up to date? Essentially going forward, we want to be able to quickly determine if a test for a certain aspect of our code already exists to prevent unit test duplication and wasting time looking for an existing test. I am sure that others have experienced the joy of organizing and maintaining large amounts of unit tests, any advice on this would be greatly appreciated.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You could use a code coverage tool like Cobertura to create a report that shows which parts of your code are exercised during the test run. Of course, being exercised does not mean that the test contains meaningful and sufficient assertions, but at least it shows which areas do not have tests at all. Going forward, before changing code, make sure there is a test case before modifying the code. When filing a bug report, also write a test case that shows the faulty behaviour. JUnit is most useful for regression tests, and for that, you need to have cases especially for the parts of the code that you are updating. |
|||||||||
|