Home | History | Annotate | Download | only in intltest

Lines Matching full:mydate

723     UnicodeString myDate;
730 myDate = "1997/02/03";
731 testIt917(fmt, myDate, date(97, 2 - 1, 3));
734 myDate = "19970304";
735 testIt917(fmt, myDate, date(97, 3 - 1, 4));
831 UDate myDate = formatter->parse(dateString, pos);
832 logln((UnicodeString)"Using " + bigD + " -> " + myDate);
833 if (myDate != expBigD) errln((UnicodeString)"FAIL: bigD - Expected " + dateToString(expBigD));
838 myDate = formatter->parse(dateString, pos);
839 logln((UnicodeString)"Using " + littleD + " -> " + dateToString(myDate));
840 if (myDate != expLittleD) errln((UnicodeString)"FAIL: littleD - Expected " + dateToString(expLittleD));