
com.testdroid.api.util.RandomUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testdroid-api Show documentation
Show all versions of testdroid-api Show documentation
The Testdroid API library for Java
The newest version!
package com.testdroid.api.util;
import org.apache.commons.lang3.RandomStringUtils;
import org.apache.commons.rng.UniformRandomProvider;
import org.apache.commons.rng.simple.RandomSource;
/**
* @author Michał Szpruta
*/
public class RandomUtils {
private RandomUtils() {
throw new IllegalStateException("Utility class");
}
public static final UniformRandomProvider RNG = RandomSource.XO_RO_SHI_RO_128_PP.create();
public static final RandomStringUtils RSU = RandomStringUtils.secure();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy