parallel-test-runner
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.diva-e.parallel-test-runner</groupId> <artifactId>parallel-test-runner</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="utf-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.diva-e.parallel-test-runner</groupId> <artifactId>parallel-test-runner-parent</artifactId> <version>1.0.0</version> </parent> <artifactId>parallel-test-runner</artifactId> <name>Parallel Test Runner</name> <description> A JUnit Runner implementation based on the SpringJUnit4ClassRunner to allow execution of tests n times in parallel with m repetitions. </description> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> </dependency> </dependencies> </project>