use of org.estatio.module.lease.dom.status.LeaseStatusService in project estatio by estatio.
the class LeaseStatusService_Test method setUp.
@Before
public void setUp() throws Exception {
lease = new Lease();
service = new LeaseStatusService();
service.clockService = new ClockService() {
@Override
public LocalDate now() {
// TODO Auto-generated method stub
return new LocalDate(2014, 4, 1);
}
};
}
Aggregations