assertNotNull(xmlArrayResponse.get(0).getEmail());
}
@Test(dataProvider = "app", retryAnalyzer = InternalServerErrorAnalyzer.class)
public void testRunCommand(App app) throws IOException {
Run run = new Run(app.getName(), "echo helloworld");
Run runAttached = new Run(app.getName(), "echo helloworld", true);
RunResponse response = connection.execute(run, apiKey);
try {
response.attach();
fail("Should throw an illegal state exception");
} catch (IllegalStateException ex) {