Searched refs:negateFloat (Results 1 – 1 of 1) sorted by relevance
820 Method negateFloat = negateMethod(float.class); in testNegate() local821 assertEquals(-0.0f, negateFloat.invoke(null, 0.0f)); in testNegate()822 assertEquals(-1.0f, negateFloat.invoke(null, 1.0f)); in testNegate()823 assertEquals(Float.NaN, negateFloat.invoke(null, Float.NaN)); in testNegate()824 assertEquals(Float.POSITIVE_INFINITY, negateFloat.invoke(null, Float.NEGATIVE_INFINITY)); in testNegate()