Searched refs:negateDouble (Results 1 – 1 of 1) sorted by relevance
750 Method negateDouble = negateMethod(double.class); in testNegate() local751 assertEquals(-0.0, negateDouble.invoke(null, 0.0)); in testNegate()752 assertEquals(-1.0, negateDouble.invoke(null, 1.0)); in testNegate()753 assertEquals(Double.NaN, negateDouble.invoke(null, Double.NaN)); in testNegate()754 assertEquals(Double.POSITIVE_INFINITY, negateDouble.invoke(null, Double.NEGATIVE_INFINITY)); in testNegate()