assertEquals(666, target.getJobId());
}
public void testTransferCreationDate() {
Date date = new Date();
MSubmission source = new MSubmission();
source.setCreationDate(date);
MSubmission target = transfer(source);
assertEquals(date, target.getCreationDate());
}