// run all tests public static void Run() { var test = new AuthTests(); // register test.RegisterWithValidUser(); test.RegisterWithDuplicateUser(); test.RegisterWithEmptyUser(); test.RegisterWithEmptyPassword(); // login test.SuccessLogin(); test.WrongUsernameLogin(); test.WrongPasswordLogin(); //logout test.Logout(); }
static void Main(string[] args) { // authentication tests AuthTests.Run(); }