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); }
public void showTestMinimum() { AccountGroup ag = AccountGroup.show(accountGroupID); Assert.IsNotNull(ag, "Account Group is null--bad call to API"); }
public void showTestFull() { AccountGroup ag = AccountGroup.show(accountGroupID, "default"); Assert.IsNotNull(ag, "Account Group is null--bad call to API"); }