use of com.octo.android.robospice.springandroid.test.model.xml.Curren_weather in project robospice by stephanenicolas.
the class InFileWeatherPersisterTest method buildWeather.
private Weather buildWeather(Curren_weather curren_weather) {
Weather weather = new Weather();
List<Curren_weather> currents = new ArrayList<Curren_weather>();
currents.add(curren_weather);
weather.setListWeather(currents);
weather.setListForecast(null);
return weather;
}
Aggregations