public void DeriveAccountPlanDescriptionTest_PaymentPlanAmountNull()
        {
            Account account = new Account()
            {
                PaymentPlanAmount = null
            };

            string result = _helper.DerivePlanDescription(account);

            Assert.IsNull(result);
        }