assertFalse(api.appExists(nonExistentApp));
}
@Test(retryAnalyzer = InternalServerErrorAnalyzer.class)
public void testCreateAppCommand() throws IOException {
AppCreate cmd = new AppCreate(new App().on(Cedar));
App response = connection.execute(cmd, apiKey);
assertNotNull(response.getId());
assertEquals(response.getStack(), Cedar);
assertEquals(response.getCreateStatus(), "complete");