Java Code Examples for org.jfree.data.time.SimpleTimePeriod#hashCode()

The following examples show how to use org.jfree.data.time.SimpleTimePeriod#hashCode() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SimpleTimePeriodTests.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Two objects that are equal are required to return the same hashCode.
 */
public void testHashcode() {
    SimpleTimePeriod s1 = new SimpleTimePeriod(new Date(10L),
            new Date(20L));
    SimpleTimePeriod s2 = new SimpleTimePeriod(new Date(10L),
            new Date(20L));
    assertTrue(s1.equals(s2));
    int h1 = s1.hashCode();
    int h2 = s2.hashCode();
    assertEquals(h1, h2);
}
 
Example 2
Source File: SimpleTimePeriodTests.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Two objects that are equal are required to return the same hashCode. 
 */
public void testHashcode() {
    SimpleTimePeriod s1 = new SimpleTimePeriod(
        new Date(10L), new Date(20L)
    );
    SimpleTimePeriod s2 = new SimpleTimePeriod(
        new Date(10L), new Date(20L)
    );
    assertTrue(s1.equals(s2));
    int h1 = s1.hashCode();
    int h2 = s2.hashCode();
    assertEquals(h1, h2);
}