assertTrue("Generated value is not a short", value instanceof Short);
}
@Test
public void randomIntegerTest() {
Object value = new RandomFunction(Integer.class).generateValue();
assertNotNull("Generated integer can not be null", value);
assertTrue("Generated value is not a Integer", value instanceof Integer);
}