use of com.spotify.apollo.request.OngoingRequest in project apollo by spotify.
the class OutcomeReportingOngoingRequestTest method setUp.
@Before
public void setUp() throws Exception {
request = Request.forUri("http://floopity");
OngoingRequest delegate = new FakeOngoingRequest();
logger = new Logger();
ongoingRequest = new OutcomeReportingOngoingRequest(delegate, logger);
}
Aggregations