devutility.internal.test.data.model.IntegerData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devutility.internal Show documentation
Show all versions of devutility.internal Show documentation
Some utilities for Java development
package devutility.internal.test.data.model;
import java.util.LinkedList;
import java.util.List;
import devutility.internal.util.RandomUtils;
public class IntegerData {
public static List list(int count) {
List list = new LinkedList<>();
for (int i = 0; i < count; i++) {
int value = RandomUtils.getNumber(count);
list.add(value);
}
return list;
}
}