Exemplo n.º 1
0
 public void GetClientsAsync_WithParams_PassesParamsToIdentityAdmin()
 {
     Get("api/Clients?filter=foo&start=7&count=25");
     ClientServiceImpl.VerifyQueryClientsAsync("foo", 7, 25);
 }
Exemplo n.º 2
0
 public void GetClientsAsync_NoParams_CallsIdentityAdmin()
 {
     Get("api/Clients");
     ClientServiceImpl.VerifyQueryClientsAsync();
 }