Lines Matching refs:propName

150         protected void testProperty(String propName)  in testProperty()  argument
156 final boolean bHasProperty = info.hasPropertyByName(propName); in testProperty()
159 if (isOptional(propName) || optionalService) in testProperty()
162 log.println("Property '" + propName + "' is optional and not supported"); in testProperty()
163 tRes.tested(propName, true); in testProperty()
169 … log.println("Tested XPropertySet does not contain'" + propName + "' property"); in testProperty()
170 tRes.tested(propName, false); in testProperty()
178 Object oldValue = oObj.getPropertyValue(propName); in testProperty()
183 Property prop = info.getPropertyByName(propName); in testProperty()
187 …ID properties is not supported by the test framework so far - skip test of property: " + propName); in testProperty()
188 tRes.tested(propName, true); in testProperty()
193 log.println( "property '"+propName+"' is not set but is not MAYBEVOID"); in testProperty()
194 tRes.tested(propName, false); in testProperty()
204 newValue = getNewValue(propName, oldValue); in testProperty()
209 … Status.failed("Cannot create new value for '" + propName + " : " + e.getMessage()); in testProperty()
222 oObj.setPropertyValue(propName, newValue); in testProperty()
246 Object resValue = oObj.getPropertyValue(propName); in testProperty()
249 checkResult(propName, oldValue, newValue, resValue, exception); in testProperty()
253 log.println("Exception occurred while testing property '" + propName + "'"); in testProperty()
255 tRes.tested(propName, false); in testProperty()
284 protected void checkResult(String propName, Object oldValue, in checkResult() argument
291 log.println("Can't get XPropertySetInfo for property " + propName); in checkResult()
292 tRes.tested(propName, false); in checkResult()
295 Property prop = info.getPropertyByName(propName); in checkResult()
303 log.println("Property " + propName + " is void"); in checkResult()
307 log.println("Property " + propName + " is readOnly"); in checkResult()
311 log.println(propName + " is void, but it's not MAYBEVOID"); in checkResult()
312 tRes.tested(propName, false); in checkResult()
316 log.println(propName + " has null value, and therefore can't be changed"); in checkResult()
317 tRes.tested(propName, true); in checkResult()
328 log.println("Property '" + propName + "' OK"); in checkResult()
329 tRes.tested(propName, true); in checkResult()
335 log.println("Property '" + propName + "' OK"); in checkResult()
336 tRes.tested(propName, true); in checkResult()
342 log.println("Property '" + propName + "' OK"); in checkResult()
343 tRes.tested(propName, true); in checkResult()
349 log.println("Property '" + propName + "' OK"); in checkResult()
350 tRes.tested(propName, true); in checkResult()
363 log.println("Read only property '" + propName + "' has changed"); in checkResult()
381 tRes.tested(propName, false); in checkResult()
385 log.println("Read only property '" + propName + "' hasn't changed"); in checkResult()
386 log.println("Property '" + propName + "' OK"); in checkResult()
387 tRes.tested(propName, true); in checkResult()
399 log.println("Value for '" + propName + "' hasn't changed as expected"); in checkResult()
421 tRes.tested(propName, true); in checkResult()
425 tRes.tested(propName, false); in checkResult()
430 tRes.tested(propName, false); in checkResult()
436 log.println("Property '" + propName + "' OK"); in checkResult()
450 tRes.tested(propName, true); in checkResult()
467 protected Object getNewValue(String propName, Object oldValue) in getNewValue() argument
530 protected Object getNewValue(String propName, Object old) in getNewValue() argument
546 protected void testProperty(String propName, PropertyTester propTester) in testProperty() argument
548 propTester.testProperty(propName); in testProperty()
555 protected void testProperty(String propName) in testProperty() argument
557 testProperty(propName, new PropertyTester()); in testProperty()
566 protected void testProperty(String propName, Object val1, Object val2) in testProperty() argument
568 testProperty(propName, new PropertyValueSwitcher(val1, val2)); in testProperty()