public void getObjectPropertyTest() { API parent = _api; data target = new data(parent); createObjectTest(); long obj_id = _objectID; string prop_name = Constants.TestObjectPropertyName; string expected = Constants.TestPropertyValue; string actual; actual = target.getObjectProperty(obj_id, prop_name); Assert.AreEqual(expected, actual); }