package casino;

import junit.framework.TestCase;

public class RandomIntTest extends TestCase {

	public void testRandomInt() {
		RandomInt r = new RandomInt();
		int i = r.random();
		assert (i == i);
	}

	public void testRandomIntIntInt() {
		RandomInt r = new RandomInt (1,6);
		int i = r.random();
		assert (i==i);
	}

	public void testRandom() {
		RandomInt r = new RandomInt (1,38);
		int i = r.random();
		assert (i==i);
	}

}
