import org.junit.Test;
import org.junit.runner.RunWith;
import com.carrotsearch.randomizedtesting.RandomizedRunner;
import com.carrotsearch.randomizedtesting.annotations.RandomizedTest;
import com.carrotsearch.randomizedtesting.annotations.Repeat;
@RunWith(RandomizedRunner.class)
public class RandomizedTestExample {
@Test
@RandomizedTest
@Repeat(iterations = 10)
public void testRandomBehavior() {
}
}