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: 323

Filed under:
|

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

Related posts about junit

Related posts about java