Home
last modified time | relevance | path

Searched refs:negateFloat (Results 1 – 1 of 1) sorted by relevance

/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java744 Method negateFloat = negateMethod(float.class); in testNegate() local
745 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()