public static async Task <HttpResponseMessage> AuthenticateAsAsync(this TestServerFixture testServerFixture, string email, string password, ITestOutputHelper output) { return(await testServerFixture.AuthenticateAsync( email, password, output )); }
public static async Task <HttpResponseMessage> AuthenticateAsUserAsync(this TestServerFixture testServerFixture, ITestOutputHelper output) { return(await testServerFixture.AuthenticateAsync( TestUserDataBuilder.UserEmail, TestUserDataBuilder.Password, output )); }