Searched refs:intToDouble (Results 1 – 1 of 1) sorted by relevance
611 Method intToDouble = numericCastingMethod(int.class, double.class); in testCastIntegerToFloatingPoint() local612 assertEquals(0.0, intToDouble.invoke(null, 0)); in testCastIntegerToFloatingPoint()613 assertEquals(-1.0, intToDouble.invoke(null, -1)); in testCastIntegerToFloatingPoint()614 assertEquals(16777216.0, intToDouble.invoke(null, 16777216)); in testCastIntegerToFloatingPoint()615 assertEquals(16777217.0, intToDouble.invoke(null, 16777217)); in testCastIntegerToFloatingPoint()