assertNotNull(response);
}
@Test(dataProvider = "app", retryAnalyzer = InternalServerErrorAnalyzer.class)
public void testRestartCommand(App app) {
Request<Unit> req = new Restart(app.getName());
Unit response = connection.execute(req, apiKey);
assertNotNull(response);
}