assertFalse(equal2.equals(unequal));
assertFalse(unequal.equals(equal1));
assertFalse(unequal.equals(equal2));
}
public void testSourceAttribute() {
SourceFileAttribute sfa1 = new SourceFileAttribute(new String("Thing.java")); //$NON-NLS-1$
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$
}