Exemplo n.º 1
0
        public void IncomeDeleteTest()
        {
            Income incomeTest = new Income();

            incomeTest.Name        = "Name test";
            incomeTest.Description = "Description test";
            long id = incomeTest.Update();

            Assert.IsFalse(incomeTest.IsNull());
            incomeTest.Delete();
            Assert.IsTrue(incomeTest.IsNull());
        }