Java Code Examples for org.jfree.chart.plot.dial.StandardDialScale#hashCode()

The following examples show how to use org.jfree.chart.plot.dial.StandardDialScale#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: StandardDialScaleTests.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() {
    StandardDialScale s1 = new StandardDialScale();
    StandardDialScale s2 = new StandardDialScale();
    assertTrue(s1.equals(s2));
    int h1 = s1.hashCode();
    int h2 = s2.hashCode();
    assertEquals(h1, h2);
}
 
Example 2
Source File: StandardDialScaleTests.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() {
    StandardDialScale s1 = new StandardDialScale();
    StandardDialScale s2 = new StandardDialScale();
    assertTrue(s1.equals(s2));
    int h1 = s1.hashCode();
    int h2 = s2.hashCode();
    assertEquals(h1, h2);
}