Home
last modified time | relevance | path

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

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DMathTest.java1148 double negateDval = negateDouble(dval); in test_powDD() local
1154 assertEquals("Result should be Math.pow(" + negateDval in test_powDD()
1155 + ",-0.0)=+1.0", 1.0, Math.pow(negateDval, NZERO)); in test_powDD()
1158 assertEquals("Result should be Math.pow(" + negateDval in test_powDD()
1159 + ",+0.0)=+1.0", 1.0, Math.pow(negateDval, +0.0)); in test_powDD()
1165 assertEquals("Result should be Math.pow(" + negateDval + "," + 1.0 in test_powDD()
1166 + ")=" + negateDval, negateDval, Math.pow(negateDval, 1.0)); in test_powDD()
1171 assertEquals("Result should be Math.pow(" + negateDval + "," in test_powDD()
1172 + Double.NaN + ")=" + Double.NaN, Double.NaN, Math.pow(negateDval, in test_powDD()
1182 + negateDval + ")=" + Double.NaN, Double.NaN, Math.pow(Double.NaN, in test_powDD()
[all …]