public void GetAllCategorias_Returno_Ok()
        {
            //Arrange
            var controller = new CategoriasController(repository, null, mapper);

            //Act
            var data = controller.GetAll();

            //Assert
            Assert.IsType <List <CategoriaDTO> >(data.Result.Value);
        }