MATH-1387: adding RetryRunner to RandomUtilsDataGeneratorJDKSecureRandomTest
Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/f672e826 Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/f672e826 Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/f672e826 Branch: refs/heads/master Commit: f672e826f51824582273fa1f5b6ec37aa5fdb2fd Parents: b9cd355 Author: Rob Tompkins <[email protected]> Authored: Sun Oct 9 16:23:08 2016 -0400 Committer: Rob Tompkins <[email protected]> Committed: Sun Oct 9 16:23:08 2016 -0400 ---------------------------------------------------------------------- .../random/RandomUtilsDataGeneratorJDKSecureRandomTest.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/f672e826/src/test/java/org/apache/commons/math4/random/RandomUtilsDataGeneratorJDKSecureRandomTest.java ---------------------------------------------------------------------- diff --git a/src/test/java/org/apache/commons/math4/random/RandomUtilsDataGeneratorJDKSecureRandomTest.java b/src/test/java/org/apache/commons/math4/random/RandomUtilsDataGeneratorJDKSecureRandomTest.java index cd4696b..beba117 100644 --- a/src/test/java/org/apache/commons/math4/random/RandomUtilsDataGeneratorJDKSecureRandomTest.java +++ b/src/test/java/org/apache/commons/math4/random/RandomUtilsDataGeneratorJDKSecureRandomTest.java @@ -16,12 +16,16 @@ */ package org.apache.commons.math4.random; +import org.apache.commons.math4.RetryRunner; +import org.junit.runner.RunWith; + import java.security.SecureRandom; /** * Test cases for the {@link RandomUtils#DataGenerator} class, using * {@link SecureRandom} as the underlying source of randomness. */ +@RunWith(RetryRunner.class) public class RandomUtilsDataGeneratorJDKSecureRandomTest extends RandomUtilsDataGeneratorAbstractTest {
