Ejemplo n.º 1
0
 public void getObjectsTest()
 {
     //Currently get the following exception:
     //A database error occurred. Please try again: unable to fetch all objects.
     API parent = _api;
     data target = new data(parent);
     createObjectTest();
     long id1 = _objectID;
     createObjectTest();
     long id2 = _objectID;
     List<long> obj_ids = new List<long> {id1, id2};
     target.getObjects(obj_ids, null);
 }