Java 类org.jfree.chart.annotations.CategoryPointerAnnotation 实例源码

项目:parabuild-ci    文件:CategoryPointerAnnotationTests.java   
/**
 * Two objects that are equal are required to return the same hashCode. 
 */
public void testHashCode() {
    CategoryPointerAnnotation a1 = new CategoryPointerAnnotation("Label", 
            "A", 20.0, Math.PI);
    CategoryPointerAnnotation a2 = new CategoryPointerAnnotation("Label", 
            "A", 20.0, Math.PI);
    assertTrue(a1.equals(a2));
    int h1 = a1.hashCode();
    int h2 = a2.hashCode();
    assertEquals(h1, h2);
}
项目:nabs    文件:CategoryPointerAnnotationTests.java   
/**
 * Two objects that are equal are required to return the same hashCode. 
 */
public void testHashCode() {
    CategoryPointerAnnotation a1 = new CategoryPointerAnnotation("Label", 
            "A", 20.0, Math.PI);
    CategoryPointerAnnotation a2 = new CategoryPointerAnnotation("Label", 
            "A", 20.0, Math.PI);
    assertTrue(a1.equals(a2));
    int h1 = a1.hashCode();
    int h2 = a2.hashCode();
    assertEquals(h1, h2);
}
项目:astor    文件:CategoryPointerAnnotationTests.java   
/**
 * Two objects that are equal are required to return the same hashCode.
 */
public void testHashCode() {
    CategoryPointerAnnotation a1 = new CategoryPointerAnnotation("Label",
            "A", 20.0, Math.PI);
    CategoryPointerAnnotation a2 = new CategoryPointerAnnotation("Label",
            "A", 20.0, Math.PI);
    assertTrue(a1.equals(a2));
    int h1 = a1.hashCode();
    int h2 = a2.hashCode();
    assertEquals(h1, h2);
}
项目:astor    文件:CategoryPointerAnnotationTests.java   
/**
 * Checks that this class implements PublicCloneable.
 */
public void testPublicCloneable() {
    CategoryPointerAnnotation a1 = new CategoryPointerAnnotation("Label",
            "A", 20.0, Math.PI);
    assertTrue(a1 instanceof PublicCloneable);
}