JUnitCore.runClasses doesn't print anything....
- by Grégoire
I have a test class that I'm trying to run from a main method with the folowing code :
Result r = org.junit.runner.JUnitCore.runClasses(TestReader.class);
when I examine the Result object I can see that 5 tests have been run but nothing is printed on the screen.
Should I do something else to get an output ?