assertEquals(response.getName(), app.getName());
}
@Test(dataProvider = "app", retryAnalyzer = InternalServerErrorAnalyzer.class)
public void testListAppsCommand(App app) throws IOException {
AppList cmd = new AppList();
List<App> response = connection.execute(cmd, apiKey);
assertNotNull(response);
assertTrue(response.size() > 0, "At least one app should be present, but there are none.");
}