Пример #1
0
        public void accountGroupAccountExists()
        {
            AccountGroup ag = AccountGroup.show(accountGroupID);

            Assert.IsNotNull(ag, "Account Group is null--bad call to API");
            Account acc = ag.Account;

            Assert.IsNotNull(acc);
        }
Пример #2
0
        public void showTestMinimum()
        {
            AccountGroup ag = AccountGroup.show(accountGroupID);

            Assert.IsNotNull(ag, "Account Group is null--bad call to API");
        }
Пример #3
0
        public void showTestFull()
        {
            AccountGroup ag = AccountGroup.show(accountGroupID, "default");

            Assert.IsNotNull(ag, "Account Group is null--bad call to API");
        }