Searched refs:intToDouble (Results 1 – 1 of 1) sorted by relevance
686 Method intToDouble = numericCastingMethod(int.class, double.class); in testCastIntegerToFloatingPoint() local687 assertEquals(0.0, intToDouble.invoke(null, 0)); in testCastIntegerToFloatingPoint()688 assertEquals(-1.0, intToDouble.invoke(null, -1)); in testCastIntegerToFloatingPoint()689 assertEquals(16777216.0, intToDouble.invoke(null, 16777216)); in testCastIntegerToFloatingPoint()690 assertEquals(16777217.0, intToDouble.invoke(null, 16777217)); in testCastIntegerToFloatingPoint()