use of edu.cornell.kfs.fp.service.impl.ScheduledAccountingLineServiceImpl in project cu-kfs by CU-CommunityApps.
the class ScheduledAccountingLineServiceImplTest method setUp.
@Before
public void setUp() throws Exception {
scheduledAccountingLineService = new ScheduledAccountingLineServiceImpl();
startingPointDate = new Date(Calendar.getInstance().getTimeInMillis());
startingPointCal = Calendar.getInstance();
startingPointCal.setTimeInMillis(startingPointDate.getTime());
accountingLine = new ScheduledSourceAccountingLine();
accountingLine.setStartDate(startingPointDate);
}
Aggregations