Lines Matching refs:addedProName

468 			String addedProName = "TextPro";  in testCustomAddPro_Text()  local
471 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Text()
478 String result = (String)getCustomPro(addedProName); in testCustomAddPro_Text()
480 assertTrue("added Text property \""+addedProName+"\" should exist", result != null); in testCustomAddPro_Text()
487 String addedProName = "DateTimePro"; in testCustomAddPro_DateTime() local
490 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_DateTime()
497 DateTime result = (DateTime)getCustomPro(addedProName); in testCustomAddPro_DateTime()
498 assertTrue("added DateTime property \""+addedProName+"\" should exist", result != null); in testCustomAddPro_DateTime()
505 String addedProName = "DatePro"; in testCustomAddPro_Date() local
508 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Date()
515 Date result = (Date)getCustomPro(addedProName); in testCustomAddPro_Date()
516 assertTrue("added Date property \""+addedProName+"\" should exist", result != null); in testCustomAddPro_Date()
523 String addedProName = "DurationPro"; in testCustomAddPro_Duration() local
527 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Duration()
534 Duration result = (Duration)getCustomPro(addedProName); in testCustomAddPro_Duration()
535 assertTrue("added Date property \""+addedProName+"\" should exist", result != null); in testCustomAddPro_Duration()
541 String addedProName = "NumberPro"; in testCustomAddPro_Number() local
544 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Number()
551 Object oResult = getCustomPro(addedProName); in testCustomAddPro_Number()
554 assertTrue("added Number property \""+addedProName+"\" should exist", oResult != null); in testCustomAddPro_Number()
561 String addedProName = "BooleanPro"; in testCustomAddPro_Boolean() local
564 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Boolean()
571 Object oResult = getCustomPro(addedProName); in testCustomAddPro_Boolean()
574 assertTrue("added Number property \""+addedProName+"\" should exist", oResult != null); in testCustomAddPro_Boolean()