//[TestMethod()]
 public void CategoriaFactoryTest()
 {
     CategoriaDAL dal = new CategoriaDAL();
     //dal.
     IDataReader DataReader = null;
     Categoria expected = null; // TODO: Initialize to an appropriate value
     Categoria actual;
     actual = dal.Factory(DataReader);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }