SourceFileAttribute sfa2 = new SourceFileAttribute(new String("Thing.java")); //$NON-NLS-1$
SourceFileAttribute sfa3 = new SourceFileAttribute(new String("OtherThing.java")); //$NON-NLS-1$
checkEquality(sfa1,sfa2,"Thing.java",sfa3); //$NON-NLS-1$
}
public void testCPInteger() {
CPInteger cp1 = new CPInteger(new Integer(3));
CPInteger cp2 = new CPInteger(new Integer(3));
CPInteger cp3 = new CPInteger(new Integer(5));
checkEquality(cp1,cp2,"3",cp3); //$NON-NLS-1$
}