So it goes without saying that I'm pretty hopeless at writing these sort of scripts, but I'm at a complete loss at what I'm doing wrong. I'm trying to run my JUnit tests with this and while the tests compile and it sees the junit.jar file (which is in the same folder as the junit tests). It keeps saying that it "Could not find class [TestClass]" though. Could someone maybe point me in the right direction?
> set path=C:\Program Files\Java\jdk1.8.0_60\bin
> javac -cp "junit-4.12.jar" *.java
> java -cp "junit-4.12.jar" org.junit.runner.JUnitCore Testclass
> pause