public void GetPlansForDistributor()
        {
            ConfigLoader.LoadConfig();

            Plans actual = null;

            Account acct = new Account();
            //acct.Email = "*****@*****.**";
            //acct.Password = "******";

            //if (acct.Login() == false)
            //{
            //    return;
            //}

            try
            {
                actual = acct.BillingPlans();
            }
            catch (Exception)
            {
            }

            Assert.IsNotNull(actual);
        }