Beispiel #1
0
 public void MyTestInitialize()
 {
     account1 = new Account(1000, "test1");
     account2 = new Account(2000, "test2");
     account3 = new Account(3000, "test3");
     accounts = new ArrayList();
     accounts.Add(account1);
     accounts.Add(account2);
     accounts.Add(account3);
     arm = new AccessReferenceMap(accounts);
 }