a(one).shouldNotBeEqual(three);
}
@Test
public void testBelongsToEquals(){
BelongsToAssociation one = new BelongsToAssociation("hello", "world", "hello_id");
BelongsToAssociation two = new BelongsToAssociation("hello", "world", "hello_id");
a(one).shouldBeEqual(two);
BelongsToAssociation three = new BelongsToAssociation("hello", "world", "hi_id");
a(one).shouldNotBeEqual(three);
}