All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.javasimon.examples.testapp.RandomNumberDataProvider Maven / Gradle / Ivy

The newest version!
package org.javasimon.examples.testapp;

import org.javasimon.examples.testapp.test.DataProvider;

import java.util.Random;

/**
 * Class InsertDataProvider.
 *
 * @author Radovan Sninsky
 * @since 2.0
 */
public class RandomNumberDataProvider implements DataProvider {

	private Random random = new Random();
	private int max;

	public RandomNumberDataProvider(int max) {
		this.max = max;
	}

	public int no() {
		return random.nextInt(max);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy