Exemple #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);
     }
 }
Exemple #2
0
 public async Task authorization_token_works()
 {
     using (var client = CreateClient())
     {
         await CommonTests.authorization_token_works(client);
     }
 }
Exemple #3
0
 public async Task testing_PostJSON()
 {
     using (var client = CreateClient())
     {
         await CommonTests.testing_PostJSON(client);
     }
 }
Exemple #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);
 }