Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
Maria Farooq committed Sep 28, 2017
1 parent f613138 commit 002c81b
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -605,17 +605,19 @@ public void testCreateAccountInSpecificOrganization() {

@Test
public void testGetAccountsOfASpecificOrganization() {
//without any parameters
//getAccounts without any parameters
ClientResponse response = RestcommAccountsTool.getInstance().getAccountsResponse(deploymentUrl.toString(), adminUsername, adminAuthToken);
if(logger.isDebugEnabled())
logger.debug("getAccounts without filter Response: "+response);
assertEquals(200, response.getStatus());

//without any parameters
//getAccounts with null Filter
response = RestcommAccountsTool.getInstance().getAccountsWithFilterResponse(deploymentUrl.toString(), adminUsername, adminAuthToken, null, null, null);
if(logger.isDebugEnabled())
logger.debug("getAccounts With null Filter Response: "+response);
assertEquals(200, response.getStatus());


}

@Deployment(name = "ClientsEndpointTest", managed = true, testable = false)
Expand Down

0 comments on commit 002c81b

Please sign in to comment.