Example #1
0
        public void given_income_account_item_return_is_spending_false()
        {
            AccountItem accountItem = new AccountItem("Salary", Category.Income, new Money(8000, Currency.RMB), new DateTime(2019, 5, 26));

            Assert.AreEqual(false, accountItem.IsSpending());
        }