use of com.thoughtworks.go.domain.BuildStateReporterStub in project gocd by gocd.
the class BuildSessionBasedTestCase method superSetup.
@Before
public void superSetup() {
statusReporter = new BuildStateReporterStub();
buildVariables = new HashMap<>();
artifactsRepository = new ArtifactsRepositoryStub();
sandbox = TestFileUtil.createTempFolder(UUID.randomUUID().toString());
console = new TestStreamConsumer();
httpService = new HttpServiceStub();
}
Aggregations