EvoSuite / evosuite

EvoSuite - automated generation of JUnit test suites for Java classes
http://www.evosuite.org
GNU Lesser General Public License v3.0
841 stars 342 forks source link

Error in evosuite on command line part 1. #258

Open evpxregu opened 5 years ago

evpxregu commented 5 years ago

For adding junit to the classpath the following command is giving to windows users:

"WINDOWS - NOTE 3: The Windows equivalent of the command above is: set CLASSPATH=target/classes:evosuite-standalone-runtime-1.0.5.jar;evosuite-tests;target/dependency/junit-4.12.jar;target/dependency/hamcrest-core-1.3.jar"

which should be "WINDOWS - NOTE 3: The Windows equivalent of the command above is: set CLASSPATH=target/classes;evosuite-standalone-runtime-1.0.5.jar;evosuite-tests;target/dependency/junit-4.12.jar;target/dependency/hamcrest-core-1.3.jar" not doing this would make it fail.

Note the change of a colon to a semicolon.