3435363738394041424344
public void testInit_1() { ScaledDouble instance = new ScaledDouble(0.54758); int expResult = 1; int result = instance.intValue(); assertEquals(expResult, result); } /** * Test of intValue method, of class ScaledDouble.
4748495051525354555657
public void testInit_14() { ScaledDouble instance = new ScaledDouble(0.87670); int expResult = 14; int result = instance.intValue(); assertEquals(expResult, result); } /** * Test of intValue method, of class ScaledDouble.
6061626364656667686970
public void testInit_m14() { ScaledDouble instance = new ScaledDouble(0.1233); int expResult = -14; int result = instance.intValue(); assertEquals(expResult, result); } /** * Test of intValue method, of class ScaledDouble.