示例#1
0
        public void AbastecimentoExcluir()
        {
            List <Abastecimento> lstAbastecimentos = new List <Abastecimento>();
            string Msg = string.Empty;

            bizVeiculo.ExcluirAbastecimentoTeste();

            lstAbastecimentos = bizVeiculo.PesquisarAbastecimentos(new Abastecimento()
            {
                UnitTest = 1
            });

            Assert.AreEqual(true, lstAbastecimentos.Count == 0);
        }