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

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

There is a newer version: 3.4.0
Show newest version
package org.javasimon.testapp;

import org.javasimon.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