<dependency>
<groupId>com.carrotsearch</groupId>
<artifactId>randomizedtesting-runner</artifactId>
<version>2.7.3</version>
<scope>test</scope>
</dependency>
@RunWith(RandomizedRunner.class)
public class MyRandomizedTest {
@Test
public void myRandomizedTestMethod() {
// ...
// ...
// ...
}
}
@Test
@Seed("12345")
public void myRandomizedTestMethod() {
// ...
}
int randomInt = RandomizedTest.randomInt(0, 100);
@Test
@Repeat(iterations = 10)
public void myRandomizedTestMethod() {
// ...
}