Here you can find the source of RandomInteger()
public static int RandomInteger()
//package com.java2s; //License from project: Open Source License public class Main { public static int RandomInteger() { // same id for tests return 2; //return (int)(Math.random() * ((100000) + 1)); }/* ww w .ja v a2 s . c o m*/ }