*/
public class AssociationEqualityTest extends ActiveJDBCTest {
@Test
public void testOneToManyEquals(){
OneToManyAssociation one = new OneToManyAssociation("hello", "world", "hello_id");
OneToManyAssociation two = new OneToManyAssociation("hello", "world", "hello_id");
a(one).shouldBeEqual(two);
OneToManyAssociation three = new OneToManyAssociation("hello", "world", "hi_id");
a(one).shouldNotBeEqual(three);
}