Compare commits

..

2 Commits

Author SHA1 Message Date
dbadia 55789804aa Merge ac1f043f51 into ff70aeb6fa 2023-11-05 14:41:38 +00:00
Dave Badia ac1f043f51 add onecall 3 API 2023-11-05 09:41:30 -05:00
@@ -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