错误 EvoSuite - EvoSuite 主进程发生致命崩溃

ERROR EvoSuite - Fatal crash on main EvoSuite process

当我尝试 运行 EvoSuite 时出现以下错误。我什至提供了 jdk 的完整路径,但错误仍未解决。请帮帮我。

C:\Users\XYZ\Documents\Tutorial_Stack>java -jar evosuite-1.0.6.jar -Dtools_jar_location="C:\Program Files\Java\jdk-11\lib"
[MASTER] 21:56:45.409 [main] ERROR EvoSuite - Fatal crash on main EvoSuite process. Class  using seed 1541559405405. Configuration id : null
java.lang.RuntimeException: Did not manage to automatically find tools.jar. Use -Dtools_jar_location=<path> property
        at org.evosuite.runtime.agent.ToolsJarLocator.getLoaderForToolsJar(ToolsJarLocator.java:105) ~[evosuite-1.0.6.jar:1.0.6]
        at org.evosuite.classpath.ClassPathHacker.initializeToolJar(ClassPathHacker.java:58) ~[evosuite-1.0.6.jar:1.0.6]
        at org.evosuite.EvoSuite.parseCommandLine(EvoSuite.java:156) ~[evosuite-1.0.6.jar:1.0.6]
        at org.evosuite.EvoSuite.main(EvoSuite.java:302) ~[evosuite-1.0.6.jar:1.0.6]

我不确定 Evosuite 是否可以与除 8 以外的任何其他版本 JDK 一起使用。Evosuite 初学者的 tutorial 声明:

The first prerequisite for this tutorial is a working Java 8 JDK installation and a command-line prompt, with java and javac on the classpath.

要检查您是否已设置,请启动终端并尝试以下操作:

javac -version

如果您安装了 JDK,您将看到类似于以下内容的输出:

javac 1.8.0_51

注意:版本的最后一部分可能不同

另一个问题:您是否为此使用任何 IDE,例如 IntelliJ 或 Eclipse?我有一个类似的问题,我通过在我的 IntelliJ 项目上将模块 SDK 设置为 1.8 来解决它。