Searched refs:negateFloat (Results 1 – 1 of 1) sorted by relevance
744 Method negateFloat = negateMethod(float.class); in testNegate() local745 assertEquals(-0.0f, negateFloat.invoke(null, 0.0f)); in testNegate()746 assertEquals(-1.0f, negateFloat.invoke(null, 1.0f)); in testNegate()747 assertEquals(Float.NaN, negateFloat.invoke(null, Float.NaN)); in testNegate()748 assertEquals(Float.POSITIVE_INFINITY, negateFloat.invoke(null, Float.NEGATIVE_INFINITY)); in testNegate()