Searched defs:longEnough (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/test/java/math/BigDecimal/
H A DZeroScalingTests.java36 static MathContext longEnough = new MathContext(50, RoundingMode.UNNECESSARY); field in class:ZeroScalingTests
84 if(! (result=zero1.add(zero2, longEnough)).equals(expected) ) {
86 System.err.println("For longEnough math context add," +
185 if(! (result=zero1.subtract(zero2, longEnough)).equals(expected) ) {
187 System.err.println("For longEnough math context subtract," +
300 if(! (result=zero1.multiply(value, longEnough)).equals(expected) ) {
302 System.err.println("For longEnough math context multiply," +
348 if(! (result=zero.divide(one, longEnough)).equals(expected) ) {
350 System.err.println("For longEnough math context divide," +

Completed in 252 milliseconds