Search in sources :

Example 1 with ScheduledAccountingLineServiceImpl

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);
}
Also used : ScheduledAccountingLineServiceImpl(edu.cornell.kfs.fp.service.impl.ScheduledAccountingLineServiceImpl) ScheduledSourceAccountingLine(edu.cornell.kfs.fp.businessobject.ScheduledSourceAccountingLine) Date(java.sql.Date) Before(org.junit.Before)

Aggregations

ScheduledSourceAccountingLine (edu.cornell.kfs.fp.businessobject.ScheduledSourceAccountingLine)1 ScheduledAccountingLineServiceImpl (edu.cornell.kfs.fp.service.impl.ScheduledAccountingLineServiceImpl)1 Date (java.sql.Date)1 Before (org.junit.Before)1