예제 #1
0
파일: BankTest.cs 프로젝트: mm00572/SSE662
 public static void Setup(TestContext context)
 {
     _myBankAccount = new Bank("Bank of Interest");
 }
예제 #2
0
파일: BankTest.cs 프로젝트: mm00572/SSE662
 public BankTest()
 {
     Bank bank2 = new Bank("Bank of Interest");
     Assert.IsNotNull(bank2);
     Assert.AreEqual(bank2.Name, "Bank of Interest");
 }