Lines Matching refs:propName

149         protected void testProperty(String propName)  in testProperty()  argument
155 final boolean bHasProperty = info.hasPropertyByName(propName); in testProperty()
158 if (isOptional(propName) || optionalService) in testProperty()
161 log.println("Property '" + propName + "' is optional and not supported"); in testProperty()
162 tRes.tested(propName, true); in testProperty()
168 … log.println("Tested XPropertySet does not contain'" + propName + "' property"); in testProperty()
169 tRes.tested(propName, false); in testProperty()
177 Object oldValue = oObj.getPropertyValue(propName); in testProperty()
182 Property prop = info.getPropertyByName(propName); in testProperty()
186 … properties is not supported by the test framework so far - skip test of property: " + propName); in testProperty()
187 tRes.tested(propName, true); in testProperty()
192 log.println( "property '"+propName+"' is not set but is not MAYBEVOID"); in testProperty()
193 tRes.tested(propName, false); in testProperty()
203 newValue = getNewValue(propName, oldValue); in testProperty()
208 … Status.failed("Cannot create new value for '" + propName + " : " + e.getMessage()); in testProperty()
221 oObj.setPropertyValue(propName, newValue); in testProperty()
245 Object resValue = oObj.getPropertyValue(propName); in testProperty()
248 checkResult(propName, oldValue, newValue, resValue, exception); in testProperty()
252 log.println("Exception occured while testing property '" + propName + "'"); in testProperty()
254 tRes.tested(propName, false); in testProperty()
283 protected void checkResult(String propName, Object oldValue, in checkResult() argument
290 log.println("Can't get XPropertySetInfo for property " + propName); in checkResult()
291 tRes.tested(propName, false); in checkResult()
294 Property prop = info.getPropertyByName(propName); in checkResult()
302 log.println("Property " + propName + " is void"); in checkResult()
306 log.println("Property " + propName + " is readOnly"); in checkResult()
310 log.println(propName + " is void, but it's not MAYBEVOID"); in checkResult()
311 tRes.tested(propName, false); in checkResult()
315 log.println(propName + " has null value, and therefore can't be changed"); in checkResult()
316 tRes.tested(propName, true); in checkResult()
327 log.println("Property '" + propName + "' OK"); in checkResult()
328 tRes.tested(propName, true); in checkResult()
334 log.println("Property '" + propName + "' OK"); in checkResult()
335 tRes.tested(propName, true); in checkResult()
341 log.println("Property '" + propName + "' OK"); in checkResult()
342 tRes.tested(propName, true); in checkResult()
348 log.println("Property '" + propName + "' OK"); in checkResult()
349 tRes.tested(propName, true); in checkResult()
362 log.println("Read only property '" + propName + "' has changed"); in checkResult()
380 tRes.tested(propName, false); in checkResult()
384 log.println("Read only property '" + propName + "' hasn't changed"); in checkResult()
385 log.println("Property '" + propName + "' OK"); in checkResult()
386 tRes.tested(propName, true); in checkResult()
398 log.println("Value for '" + propName + "' hasn't changed as expected"); in checkResult()
420 tRes.tested(propName, true); in checkResult()
424 tRes.tested(propName, false); in checkResult()
429 tRes.tested(propName, false); in checkResult()
435 log.println("Property '" + propName + "' OK"); in checkResult()
449 tRes.tested(propName, true); in checkResult()
466 protected Object getNewValue(String propName, Object oldValue) in getNewValue() argument
529 protected Object getNewValue(String propName, Object old) in getNewValue() argument
545 protected void testProperty(String propName, PropertyTester propTester) in testProperty() argument
547 propTester.testProperty(propName); in testProperty()
554 protected void testProperty(String propName) in testProperty() argument
556 testProperty(propName, new PropertyTester()); in testProperty()
565 protected void testProperty(String propName, Object val1, Object val2) in testProperty() argument
567 testProperty(propName, new PropertyValueSwitcher(val1, val2)); in testProperty()