Home | History | Annotate | Download | only in intltest

Lines Matching full:tzurl

1032  * Write out time zone rules of OlsonTimeZone into VTIMEZONE format with RFC2445 header TZURL and
1041 UnicodeString tzurl;
1061 // Check if TZURL and LAST-MODIFIED properties are preserved
1062 newvtz1->getTZURL(tzurl);
1063 if (tzurl != TESTURL1) {
1064 errln("FAIL: TZURL 1 was not preserved");
1073 // Set different tzurl
1085 // Check if TZURL and LAST-MODIFIED properties are preserved
1086 newvtz2->getTZURL(tzurl);
1087 if (tzurl != TESTURL2) {
1088 errln("FAIL: TZURL was not preserved in the second roundtrip");
1706 UnicodeString TZURL("http://icu-project.org/timezone");
1711 vtz->setTZURL(TZURL);
1712 if (!vtz->getTZURL(url) || url != TZURL) {