我想在用testng测试时为单独的类创建单独的jvm。 IIS给出ExecutionException在启动fork时发生错误

时间:2018-09-27 02:58:07

标签: java testng maven-surefire-plugin

在用testng测试时,我想为单独的类创建单独的jvm。它给出了ExecutionException错误,发生在启动fork错误中。

这是代码。

<plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.22.0</version>
          <configuration>
            <suiteXmlFiles>             
              <suiteXmlFile>src/test/resources/testplan/testng.xml</suiteXmlFile>
            </suiteXmlFiles>
            <forkCount>1</forkCount>
            <reuseForks>false</reuseForks>
            <workingDirectory>${my.client}</workingDirectory>
          </configuration>
    </plugin>

0 个答案:

没有答案