public void InfoSchema_TABLE_CONSTRAINTS_NULL()
 {
     TABLE_CONSTRAINTS t = new TABLE_CONSTRAINTS();
     List<TABLE_CONSTRAINTS> tl = t.ToList;
     Assert.AreEqual<List<TABLE_CONSTRAINTS>>(tl, null);
 }
 public void InfoSchema_TABLE_CONSTRAINTS()
 {
     TABLE_CONSTRAINTS t = new TABLE_CONSTRAINTS(connStr);
     List<TABLE_CONSTRAINTS> tl = t.ToList;
     Assert.AreNotEqual<List<TABLE_CONSTRAINTS>>(tl, null);
 }