Exemplo n.º 1
0
 public void TestLogIn_NoAccount()
 {
     Assert.IsFalse(ledger.LogIn("testUsername", "testPassword"));
     Assert.IsNull(ledger.GetCurrentUser());
     Assert.IsFalse(ledger.IsLoggedIn());
 }
Exemplo n.º 2
0
 private static void PrintUserWelcome(Services.BankLedger ledger)
 {
     Console.WriteLine($"Welcome {ledger.GetCurrentUser()}! Please choose one of the following options:");
     PrintAccountOptions();
 }