public void InfoSchema_PARAMETERS_NULL()
 {
     PARAMETERS p = new PARAMETERS();
     List<PARAMETERS> pl = p.ToList;
     Assert.AreEqual<List<PARAMETERS>>(pl, null);
 }
 public void InfoSchema_PARAMETERS()
 {
     PARAMETERS p = new PARAMETERS(connStr);
     List<PARAMETERS> pl = p.ToList;
     Assert.AreNotEqual<List<PARAMETERS>>(pl, null);
 }