public void test09ReceptiveAccountDoNotManageOtherAccount() { ReceptiveAccount account1 = new ReceptiveAccount(); ReceptiveAccount account2 = new ReceptiveAccount(); Assert.IsFalse(account1.manages(account2)); }
public void test08ReceptiveAccountManageItSelf() { ReceptiveAccount account1 = new ReceptiveAccount(); Assert.IsTrue(account1.manages(account1)); }