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.
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.