assertSame("Unable to set source table", sourceTable, bean.getSourceTable());
}
public void testSetSourcePrimaryKey() {
// create
PrimaryKey primaryKey = new DefaultModelFactory().createPrimaryKey();
// set
bean.setSourcePrimaryKey(primaryKey);
// check
assertSame("Unable to set source primary key", primaryKey, bean.getSourcePrimaryKey());
}