Ejemplo n.º 1
0
 public void getAssociatedObjectCountTest()
 {
     setAssociationTest();
     API parent = _api;
     data target = new data(parent);
     string name = Constants.TestType;
     long obj_id = _id2;
     int expected = 1;  // //Test is known to fail as of 8/10.  Don't know why there are 0 being returned by facebook.  It should be 1.
     int actual;
     actual = target.getAssociatedObjectCount(name, obj_id);
     Assert.AreEqual(expected, actual);
 }