assertEquals(response.getStatus(), "Installed");
}
@Test(dataProvider = "newApp", retryAnalyzer = InternalServerErrorAnalyzer.class)
public void testCollaboratorList(App app) {
Request<List<Collaborator>> req = new CollabList(app.getName());
List<Collaborator> xmlArrayResponse = connection.execute(req, apiKey);
assertEquals(xmlArrayResponse.size(), 1);
assertNotNull(xmlArrayResponse.get(0).getEmail());
}