Lines Matching refs:addedProDefaultValue

454 			String addedProDefaultValue = "testUser";  in testCustomAddPro_Text()  local
456 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Text()
466 assertEquals("value of added property should be "+addedProDefaultValue, in testCustomAddPro_Text()
467 addedProDefaultValue, result); in testCustomAddPro_Text()
473 DateTime addedProDefaultValue = getCurrentDateTime(); in testCustomAddPro_DateTime() local
475 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_DateTime()
485 this.DateTimeEquals(result, addedProDefaultValue)); in testCustomAddPro_DateTime()
491 Date addedProDefaultValue = getCurrentDate(); in testCustomAddPro_Date() local
493 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Date()
503 this.DateEquals(result, addedProDefaultValue)); in testCustomAddPro_Date()
509 Duration addedProDefaultValue = new Duration(); in testCustomAddPro_Duration() local
510 addedProDefaultValue.Days = 1; in testCustomAddPro_Duration()
512 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Duration()
521 …assertTrue("value of added property should the same as set", DurationEquals(addedProDefaultValue, … in testCustomAddPro_Duration()
527 Double addedProDefaultValue = (double)10; in testCustomAddPro_Number() local
529 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Number()
540 assertEquals("value of added property should be "+Double.toString(addedProDefaultValue), in testCustomAddPro_Number()
541 addedProDefaultValue, result); in testCustomAddPro_Number()
547 Boolean addedProDefaultValue = true; in testCustomAddPro_Boolean() local
549 addCustomPro(addedProName, addedProDefaultValue); in testCustomAddPro_Boolean()
560 assertEquals("value of added property should be "+Boolean.toString(addedProDefaultValue), in testCustomAddPro_Boolean()
561 addedProDefaultValue, result); in testCustomAddPro_Boolean()