简体   繁体   中英

How to run Eclipse java JUnit test suite from command line? (windows)

I've been developing a test suite for a provided "solution.jar" file in Eclipse for an assignment. I have a test suite which I can run in eclipse no problem, but the assignment requires that I run it from the command line, but I've no idea how to do this.

I've tried:

java -cp .;/usr/share/java/junit.jar org.junit.runner.JUnitCore AllTests

but it just said Error: could not load main class org.junit.runner.JUnitCore

Could someone help me out?

you can use maven build and then from command prompt fire this command

mvn test

It will run test case associated with your project.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM