0

我需要通过 Maven 为 evosuite 设置一个属性。该属性是assertion_strategy,我想将其设置为all

我试图通过 maven 命令传递它没有工作。我也尝试通过 pom 设置它,但我想我没有使用正确的标签

<plugin>
                <artifactId>evosuite-maven-plugin</artifactId>
                <groupId>org.evosuite.plugins</groupId>
                <version>${evosuiteVersion}</version>
                <configuration>
                 <properties>
                   <property>
                      <name>assertion_strategy</name>
                      <value>all</value>
                  </property>
                 </properties>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>prepare</goal>
                        </goals>
                        <phase>process-test-classes</phase>
                    </execution>
                </executions>
</plugin>

当我在 maven 调试模式命令中查看 evosuite jar 执行时,我希望看到 -Dassertion_strategy=all。

谢谢

4

0 回答 0