Exemplo n.º 1
0
 public async Task setting_cookie_and_delete_on_sub_path()
 {
     using (var client = CreateClient())
     {
         await CommonTests.setting_cookie_and_delete_on_sub_path(client);
     }
 }
Exemplo n.º 2
0
 public async Task authorization_token_works()
 {
     using (var client = CreateClient())
     {
         await CommonTests.authorization_token_works(client);
     }
 }
Exemplo n.º 3
0
 public async Task testing_PostJSON()
 {
     using (var client = CreateClient())
     {
         await CommonTests.testing_PostJSON(client);
     }
 }
Exemplo n.º 4
0
 public async Task hello_world_and_notfound()
 {
     using (var client = CreateClient())
     {
         await CommonTests.hello_world_and_notfound(client);
     }
 }
 public async Task setting_cookie_and_delete_without_path()
 {
     await CommonTests.setting_cookie_and_delete_without_path(_client);
 }
 public async Task testing_PostJSON()
 {
     await CommonTests.testing_PostJSON(_client);
 }
 public async Task authorization_token_works()
 {
     await CommonTests.authorization_token_works(_client);
 }
 public async Task hello_world_and_notfound()
 {
     await CommonTests.hello_world_and_notfound(_client);
 }