use of com.thoughtworks.go.domain.activity.JobStatusCache in project gocd by gocd.
the class JobInstanceServiceTest method setUp.
@Before
public void setUp() throws Exception {
initMocks(this);
job = JobInstanceMother.building("dev");
transactionSynchronizationManager = new TestTransactionSynchronizationManager();
transactionTemplate = new TestTransactionTemplate(transactionSynchronizationManager);
jobStatusCache = new JobStatusCache(stageDao);
}
Aggregations