Lines Matching refs:addedProDefaultValue

469 			String addedProDefaultValue = "testUser";  in testCustomAddPro_Text()  local
471 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Text()
481 assertEquals("value of added property should be "+addedProDefaultValue, in testCustomAddPro_Text()
482 addedProDefaultValue, result); in testCustomAddPro_Text()
488 DateTime addedProDefaultValue = getCurrentDateTime(); in testCustomAddPro_DateTime() local
490 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_DateTime()
500 this.DateTimeEquals(result, addedProDefaultValue)); in testCustomAddPro_DateTime()
506 Date addedProDefaultValue = getCurrentDate(); in testCustomAddPro_Date() local
508 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Date()
518 this.DateEquals(result, addedProDefaultValue)); in testCustomAddPro_Date()
524 Duration addedProDefaultValue = new Duration(); in testCustomAddPro_Duration() local
525 addedProDefaultValue.Days = 1; in testCustomAddPro_Duration()
527 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Duration()
536 …assertTrue("value of added property should the same as set", DurationEquals(addedProDefaultValue, … in testCustomAddPro_Duration()
542 Double addedProDefaultValue = (double)10; in testCustomAddPro_Number() local
544 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Number()
555 assertEquals("value of added property should be "+Double.toString(addedProDefaultValue), in testCustomAddPro_Number()
556 addedProDefaultValue, result); in testCustomAddPro_Number()
562 Boolean addedProDefaultValue = true; in testCustomAddPro_Boolean() local
564 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Boolean()
575 assertEquals("value of added property should be "+Boolean.toString(addedProDefaultValue), in testCustomAddPro_Boolean()
576 addedProDefaultValue, result); in testCustomAddPro_Boolean()