@Test
public final void testDeleteCommunity() throws Exception {
String communityUuid = community.getCommunityUuid();
communityService.deleteCommunity(communityUuid);
if (communityService.getApiVersion().lessThan(new Version(5, 0))){
thrown.expect(ClientServicesException.class);
thrown.expectMessage("404:Not Found");
thrown.expectMessage("Request to url");
community = communityService.getCommunity(communityUuid);
}