Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/text/
DOldDateFormatTest.java148 DateFormat df1 = DateFormat.getInstance(); in test_hashCode() local
149 DateFormat df2 = (DateFormat) df1.clone(); in test_hashCode()
151 df1.hashCode() == df2.hashCode()); in test_hashCode()
152 assertTrue("Hash codes of different objects are the same", df1 in test_hashCode()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DDecimalFormatTest.java992 DecimalFormat df1 = new DecimalFormat(); in test_hashCode() local
993 DecimalFormat df2 = (DecimalFormat) df1.clone(); in test_hashCode()
994 assertTrue("Hash codes of equals object are not equal", df2.hashCode() == df1.hashCode()); in test_hashCode()