}
// don't use the app dataprovider because it'll try to delete an already deleted app
@Test(retryAnalyzer = InternalServerErrorAnalyzer.class)
public void testDestroyAppCommand() throws IOException {
AppDestroy cmd = new AppDestroy(new HerokuAPI(connection, apiKey).createApp(new App().on(Cedar)).getName());
Unit response = connection.execute(cmd, apiKey);
assertNotNull(response);
}