Home | History | Annotate | Download | only in intltest

Lines Matching full:day

500  * Test the handling of the day of the week, checking for correctness and
529 dow > max) errln(UnicodeString("FAIL: Day of week ") + (int32_t)dow + " out of range");
530 if (dow != UCAL_SUNDAY) errln("FAIL: Day of week should be SUNDAY[%d] not %d", UCAL_SUNDAY, dow);
603 verify765("1997 third day of June = ", c, 1997, UCAL_JUNE, 3);
654 * results in the first WOY/DOW day of the year satisfying the
696 CalendarTest::verify765(const UnicodeString& msg, Calendar* c, int32_t year, int32_t month, int32_t day)
705 d == day) {
711 errln("FAIL: " + msg + dateToString(c->getTime(status), str) + "; expected " + (int32_t)year + "/" + (int32_t)(month + 1) + "/" + (int32_t)day +
1361 * When adding the YEAR, the month and day should remain constant.
1373 int32_t day = cal.get(UCAL_DATE, status);
1394 if (y2 != (y+1) || mon2 != mon || day2 != day) {
1396 (y+1) + ", month " + (mon+1) + ", day " + day;
1510 errln("FAIL: Different Day Of Year!");
1543 errln(UnicodeString("Day of week should be ") + expectedDOW + " instead of " + newDOW +