示例#1
0
        public void TestBlueSky_GetAccounts()
        {
            //set-up
            CreateAccountData();
            AccountModel[] accounts = new AccountModel[0];

            //pre-conditions
            Assert.AreEqual(0, accounts.Length);

            //exercise
            accounts = Presenter.GetAccounts();

            //post-conditions
            Assert.AreEqual(1, accounts.Length);
        }