BLL.Tests.PersonasTests.InsertarTest C# (CSharp) Method

InsertarTest() private method

private InsertarTest ( ) : void
return void
        public void InsertarTest()
        {
            Personas persona = new Personas();
            persona.Nombre = "Padilla";
            persona.AgregarTelefono(TiposTelefonos.Celular, "809-881-8988");
            persona.AgregarTelefono(TiposTelefonos.Casa, "809-881-8988");

            Assert.IsTrue( persona.Insertar());



        }