Searched refs:hash2 (Results 1 – 1 of 1) sorted by relevance
356 BigDecimal hash2 = new BigDecimal(1.00D); in test_hashCode() local358 hash.hashCode() != hash2.hashCode() && !hash.equals(hash2)); in test_hashCode()359 hash2 = new BigDecimal("1.0"); in test_hashCode()361 hash.hashCode() != hash2.hashCode() && !hash.equals(hash2)); in test_hashCode()363 hash2 = new BigDecimal(val, 2); in test_hashCode()365 .hashCode() == hash2.hashCode() in test_hashCode()366 && hash.equals(hash2)); in test_hashCode()368 hash2 = new BigDecimal("-1233456.0000"); in test_hashCode()370 .hashCode() != hash2.hashCode() in test_hashCode()371 && !hash.equals(hash2)); in test_hashCode()[all …]