Searched refs:negateDouble (Results 1 – 1 of 1) sorted by relevance
826 Method negateDouble = negateMethod(double.class); in testNegate() local827 assertEquals(-0.0, negateDouble.invoke(null, 0.0)); in testNegate()828 assertEquals(-1.0, negateDouble.invoke(null, 1.0)); in testNegate()829 assertEquals(Double.NaN, negateDouble.invoke(null, Double.NaN)); in testNegate()830 assertEquals(Double.POSITIVE_INFINITY, negateDouble.invoke(null, Double.NEGATIVE_INFINITY)); in testNegate()