sharedUserAPI.destroyApp(transferredApp.getName());
}
@Test(dataProvider = "newApp", invocationCount = 5, successPercentage = 20, retryAnalyzer = InternalServerErrorAnalyzer.class)
public void testSharingRemoveCommand(App app) throws IOException {
SharingAdd sharingAddCommand = new SharingAdd(app.getName(), sharingUser.getUsername());
Unit sharingAddResp = connection.execute(sharingAddCommand, apiKey);
assertNotNull(sharingAddResp);
SharingRemove cmd = new SharingRemove(app.getName(), sharingUser.getUsername());
Unit response = connection.execute(cmd, apiKey);