1

我们的项目结构为 src/test/jmeter/regressionTests/jmx1,jmx2,jmx2。regressionTests 文件夹有不同的 jmx 文件。这些文件可以并行执行。(它们之间没有依赖关系。每个jmx文件创建自己的数据,然后删除最后创建的数据。)

目前我们使用 maven 命令运行它们:

-Pprofile-jmeter jmeter:jmeter -DtestType=regressionTest -DskipTests=true

pom.xml 配置如下:

<profiles>
        <profile>
            <id>profile-jmeter</id>
            <activation>
                <activeByDefault>false</activeByDefault>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>com.lazerycode.jmeter</groupId>
                        <artifactId>jmeter-maven-plugin</artifactId>
                        <version>1.10.1</version>
                        <executions>
                            <execution>
                                <id>run-jmeter-tests</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>jmeter</goal>
                                </goals>
                            </execution>
                        </executions>
                        <configuration>
                            <testFilesDirectory>${basedir}/src/test/jmeter/scripts/${testType}</testFilesDirectory>
                            <overrideRootLogLevel>ERROR</overrideRootLogLevel>
                            <testResultsTimestamp>false</testResultsTimestamp>
                            <resultsFileFormat>xml</resultsFileFormat>

有什么我们可以添加到 maven 命令或 pom.xml 中的 maven 配置,以便 jmx 文件并行运行。

4

2 回答 2

0

您应该能够分叉测试执行。我从来没有为 JMeter 尝试过这个。似乎是可行的。检查以下链接。

http://maven.apache.org/surefire/maven-surefire-plugin/examples/fork-options-and-parallel-execution.html

于 2016-04-20T07:33:12.003 回答
0

您可以多次调用 maven。每个都将执行一个单独的过程。

于 2016-04-19T16:44:23.587 回答