Up to java development

Junit test suite maker

Easily run JUnit test case for classes in hierarchical dependency reverse order

sources download

I discovered when running all JUnit test case that it is better to launch test in dependency reverse order:
if class A use classes B and C, it is a good thing to test B and C before A, because is A test failed it can be because B and/or C are not stable.

It is wasting time to analyse A to discover that B and/or C do not work good and it was detected on B and C test case.

Running test in hierarchical reverse order make able to focalise on first test failure if have any.


An easy way to parse / analyse / modify / generate java code: Spoon project
http://spoon.gforge.inria.fr/