JUnitCore.runClasses doesn't print anything....
Posted
by Grégoire
on Stack Overflow
See other posts from Stack Overflow
or by Grégoire
Published on 2010-04-22T11:59:21Z
Indexed on
2010/04/22
12:03 UTC
Read the original article
Hit count: 357
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 ?
© Stack Overflow or respective owner