public void Select_UnknownType()
 {
     GameDB db = new GameDB(typeof(string));
       db.Select(typeof(int));
 }
 public void Select()
 {
     GameDB db = new GameDB(typeof(string));
       List<object> exp = List("olof", "bjarnason");
       db.AddRange(exp);
       List<string> res = new List<string>();
       foreach(string s in db.Select(typeof(string)))
     res.Add(s);
       CollectionAssert.AreEqual(exp, res);
 }