Example #1
0
        public void TestGetPrueba()
        {
            //Arrange
            RegistroesController registroesController = new RegistroesController();
            //Act
            var ListaPrueba = registroesController.GetRegistroes();

            //Asser
            Assert.IsNotNull(ListaPrueba);
        }
        public void TestGetRegistro()
        {
            //Arrange
            RegistroesController registroesController = new RegistroesController();

            //Act
            var ListaReg = registroesController.GetRegistroes();

            //Asert
            Assert.IsNotNull(ListaReg);
        }