I have junit4.jar in a folder along with TestMain.java
I successfully compiled test main, then I attempt to run it from command line with
java -cp junit4.jar org.junit.runner.JUnitCore TestMain
I get this error message
JUnit version 4.10
Could not find class: TestMain
But they're in the same folder! What am I missing here?