public void GetListTest()
        {
            bool paso = false;

            List <Inventario> lista = InventarioBLL.GetList(l => true);

            if (lista != null)
            {
                paso = true;
            }

            Assert.AreEqual(paso, true);
        }