Beispiel #1
0
 /// <summary>
 /// Try to login using stored userid and password
 /// Test LoggedIn property to verify.
 /// </summary>
 /// <returns></returns>
 internal void LogIn()
 {
     if (string.IsNullOrEmpty(WebUserId))
     {
         return;
     }
     _transferrer.LogIn(WebUserId, StoredWebPassword);
 }
 private void Login()
 {
     Assert.That(_transfer.LogIn("*****@*****.**", "unittest"), Is.True,
                 "Could not log in using the [email protected] account");
 }