Compare commits

..

2 Commits

Author SHA1 Message Date
dbadia
55789804aa
Merge ac1f043f51639be16817b4cfc06b79492d664000 into ff70aeb6fa2a8b2d724e75211d3c20eed522084d 2023-11-05 14:41:38 +00:00
Dave Badia
ac1f043f51 add onecall 3 API 2023-11-05 09:41:30 -05:00

View File

@ -51,6 +51,7 @@ public class CurrentWeatherOneCallApi3IntegrationTest extends ApiTest {
.asJava();
assertNotNull(currentWeatherData);
assertNotNull(currentWeatherData.getDailyList().get(0).getSummary());
}
@Test
@ -66,7 +67,6 @@ public class CurrentWeatherOneCallApi3IntegrationTest extends ApiTest {
assertNotNull(responseJson);
assertNotEquals("", responseJson);
System.out.println(responseJson);
}
@Test
@ -84,6 +84,7 @@ public class CurrentWeatherOneCallApi3IntegrationTest extends ApiTest {
assertNotNull(currentWeatherData);
assertNull(currentWeatherData.getCurrent());
assertNull(currentWeatherData.getMinutelyList());
assertNotNull(currentWeatherData.getDailyList().get(0).getSummary());
}
@Test
@ -99,6 +100,7 @@ public class CurrentWeatherOneCallApi3IntegrationTest extends ApiTest {
assertNotNull(currentWeatherDataFuture);
assertNotNull(currentWeatherDataFuture.get());
assertNotNull(currentWeatherDataFuture.get().getDailyList().get(0).getSummary());
}
@Test
@ -115,7 +117,6 @@ public class CurrentWeatherOneCallApi3IntegrationTest extends ApiTest {
assertNotNull(responseJsonFuture);
final String responseJson = responseJsonFuture.get();
assertNotNull(responseJson);
System.out.println(responseJson);
}
@Test