use of com.octo.android.robospice.googlehttpclient.test.model.Weather in project robospice by stephanenicolas.
the class GoogleHttpClientSpiceServiceTest method test_addRequest_injects_request_factory.
public void test_addRequest_injects_request_factory() throws InterruptedException {
// given
spiceManager.start(getContext());
GoogleHttpClientSpiceRequestStub googleHttpClientSpiceRequest = new GoogleHttpClientSpiceRequestStub(Weather.class);
// when
spiceManager.execute(googleHttpClientSpiceRequest, new RequestListenerStub<Weather>());
googleHttpClientSpiceRequest.await(REQUEST_COMPLETION_TIMEOUT);
// test
assertNotNull(googleHttpClientSpiceRequest.getHttpRequestFactory());
}
use of com.octo.android.robospice.googlehttpclient.test.model.Weather in project robospice by stephanenicolas.
the class JsonObjectPersisterFactoryTest method buildWeather.
private WeatherResult buildWeather(String temp, String tempUnit) {
WeatherResult weatherRequestStatus = new WeatherResult();
Weather weather = new Weather();
List<CurrenWeather> currents = new ArrayList<CurrenWeather>();
CurrenWeather current_weather = new CurrenWeather();
current_weather.setTemp(temp);
current_weather.setTemp_unit(tempUnit);
currents.add(current_weather);
weather.setCurren_weather(currents);
weatherRequestStatus.setWeather(weather);
return weatherRequestStatus;
}
Aggregations