One of the interest of JUnit is to provide a framework for unitary testing.
I have recently experienced unit testing with and without the JUnit framework. Of course, the tests had been coded by several developers, who all had their own habits (even if a procedure exists
).
While upgrading, we had to know if the tests were ok.
Running and Checking the 'noJunit' tests results was painful. I had to find out where the test classes were, find all of them, run the test classes individually, read the result of each individual before concluding the tests were ok.
In the second case, with the "Junit" test results I only needed to run a class named 'RootSuite' and read the results as "123 tests runned. Ok"
[ March 12, 2002: Message edited by: Wilfried LAURENT ]