jmeters junit samplerでmavenを使用して負荷テストを行い、パフォーマンス結果をレポートしたいと考えています。私は5 sec.hereのランプアップ期間で10個のスレッドを使用すると、私のPOMファイルであるjmeters junit sampler with maven
enter code here <properties>
<selenium.version>3.0.1</selenium.version>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-maven-plugin</artifactId>
<version>2.2.0</version>
<executions>
<execution>
<id>jmeter-classes</id>
<goals>
<goal>jmeter</goal>
</goals>
</execution>
</executions>
<configuration>
<junitLibraries>
<artifact>com.lazerycode.junit:junit-test:1.0.0</artifact>
</junitLibraries>
<propertiesGlobal>
<threads>10</threads>
<rampup>5</rampup>
</propertiesGlobal>
</configuration>
</plugin>
</plugins>
</build>
それは修正で私を助けてくださいませんsampler.IfのJMeterのJUnitの要求を呼び出すための正しい方法があるなら、私を助けてください。
また、あなたは次のように<jmeterExtensions>
タグの下の依存関係を配置する必要がありJMeter Maven PluginドキュメントのAdding additional libraries to the classpath章ごとのよう
おかげで、よろしく