public void InsereMultiplosRegistros() { // Arrange EstudanteDominio oEstudanteDominio = null; List<Estudante> oEstudanteList = null; Boolean isSucesso; // Act oEstudanteList = new List<Estudante>() { new Estudante() { Nome = "Roginaldo", Idade = 27 } , new Estudante() { Nome = "Mariana", Idade = 33 } , new Estudante() { Nome = "Karine", Idade = 18, DataExclusao = DateTime.Now } , new Estudante() { Nome = "Raquel", Idade = 21 } , new Estudante() { Nome = "Marcelo", Idade = 43 } }; oEstudanteDominio = new EstudanteDominio(); isSucesso = oEstudanteDominio.Inserir(oEstudanteList); // Assert Assert.IsTrue(isSucesso); oEstudanteDominio = null; oEstudanteList = null; }
public void InsereRegistroUnico() { // Arrange EstudanteDominio oEstudanteDominio = null; Estudante oEstudante = null; Boolean isSucesso; // Act oEstudante = new Estudante() { Nome = "Tiago", Idade = 27 }; oEstudanteDominio = new EstudanteDominio(); isSucesso = oEstudanteDominio.Inserir(oEstudante); // Assert Assert.IsTrue(isSucesso); oEstudanteDominio = null; oEstudante = null; }