public void Excluir() { ItemContaPersistence cp = new ItemContaPersistence(); ItemConta c = cp.ObterPorId(1); int x = cp.Excluir(c); Assert.IsTrue(x > 0); }
public void Alterar() { ItemContaPersistence cp = new ItemContaPersistence(); ItemConta c = cp.ObterPorId(2); c.Descricao = "Água"; int x = cp.Atualizar(c); Assert.IsTrue(x > 0); }