Exemplo n.º 1
0
 public static void Setup(TestContext context)
 {
     _myBankAccount = new Bank("Bank of Interest");
 }
Exemplo n.º 2
0
 public BankTest()
 {
     Bank bank2 = new Bank("Bank of Interest");
     Assert.IsNotNull(bank2);
     Assert.AreEqual(bank2.Name, "Bank of Interest");
 }