Lines Matching refs:addedProName
453 String addedProName = "TextPro"; in testCustomAddPro_Text() local
456 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Text()
463 String result = (String)getCustomPro(addedProName); in testCustomAddPro_Text()
465 assertTrue("added Text property \""+addedProName+"\" should exist", result != null); in testCustomAddPro_Text()
472 String addedProName = "DateTimePro"; in testCustomAddPro_DateTime() local
475 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_DateTime()
482 DateTime result = (DateTime)getCustomPro(addedProName); in testCustomAddPro_DateTime()
483 assertTrue("added DateTime property \""+addedProName+"\" should exist", result != null); in testCustomAddPro_DateTime()
490 String addedProName = "DatePro"; in testCustomAddPro_Date() local
493 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Date()
500 Date result = (Date)getCustomPro(addedProName); in testCustomAddPro_Date()
501 assertTrue("added Date property \""+addedProName+"\" should exist", result != null); in testCustomAddPro_Date()
508 String addedProName = "DurationPro"; in testCustomAddPro_Duration() local
512 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Duration()
519 Duration result = (Duration)getCustomPro(addedProName); in testCustomAddPro_Duration()
520 assertTrue("added Date property \""+addedProName+"\" should exist", result != null); in testCustomAddPro_Duration()
526 String addedProName = "NumberPro"; in testCustomAddPro_Number() local
529 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Number()
536 Object oResult = getCustomPro(addedProName); in testCustomAddPro_Number()
539 assertTrue("added Number property \""+addedProName+"\" should exist", oResult != null); in testCustomAddPro_Number()
546 String addedProName = "BooleanPro"; in testCustomAddPro_Boolean() local
549 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Boolean()
556 Object oResult = getCustomPro(addedProName); in testCustomAddPro_Boolean()
559 assertTrue("added Number property \""+addedProName+"\" should exist", oResult != null); in testCustomAddPro_Boolean()