ICU-21622 Add UYW to list of currencies from ucurr_openISOCurrencies()

This commit is contained in:
Peter Edberg 2021-07-21 21:21:54 -07:00 committed by Peter Edberg
parent d5cb201e52
commit eed6388dab
4 changed files with 31 additions and 0 deletions

View file

@ -1963,6 +1963,7 @@ static const struct CurrencyList {
{"UYI", UCURR_UNCOMMON|UCURR_NON_DEPRECATED},
{"UYP", UCURR_COMMON|UCURR_DEPRECATED},
{"UYU", UCURR_COMMON|UCURR_NON_DEPRECATED},
{"UYW", UCURR_UNCOMMON|UCURR_NON_DEPRECATED},
{"UZS", UCURR_COMMON|UCURR_NON_DEPRECATED},
{"VEB", UCURR_COMMON|UCURR_DEPRECATED},
{"VEF", UCURR_COMMON|UCURR_NON_DEPRECATED},

View file

@ -83,6 +83,12 @@ static void TestEnumList(void) {
expectInList("XEU", UCURR_UNCOMMON|UCURR_DEPRECATED, TRUE);
expectInList("XEU", UCURR_UNCOMMON|UCURR_NON_DEPRECATED, FALSE);
// ICU-21622
expectInList("UYW", UCURR_ALL, TRUE);
expectInList("UYW", UCURR_COMMON, FALSE);
expectInList("UYW", UCURR_UNCOMMON, TRUE);
expectInList("UYW", UCURR_DEPRECATED, FALSE);
expectInList("UYW", UCURR_NON_DEPRECATED, TRUE);
}
static void TestEnumListReset(void) {

View file

@ -1363,6 +1363,10 @@ structLocale:table(nofallback){
"",
"",
}
UYW{
"",
"",
}
UZS{
"",
"",
@ -1630,6 +1634,7 @@ structLocale:table(nofallback){
UAH{""}
USD{""}
UYU{""}
UYW{""}
VEF{""}
VND{""}
XCD{""}
@ -3683,6 +3688,14 @@ structLocale:table(nofallback){
many{""}
other{""}
}
UYW{
zero{""}
one{""}
two{""}
few{""}
many{""}
other{""}
}
UZS{
zero{""}
one{""}

View file

@ -570,6 +570,17 @@ public class CurrencyTest extends TestFmwk {
metainfo.currencies(filter.withTender()));
}
@Test
public void TestFullCurrencyList() {
CurrencyMetaInfo metainfo = CurrencyMetaInfo.getInstance();
if (metainfo == null) {
errln("Unable to get CurrencyMetaInfo instance.");
return;
}
List<String> currencies = metainfo.currencies(null);
assertTrue("Full currencies list should include UYW", currencies.contains("UYW")); // ICU-21622
}
// Coverage-only test of the CurrencyMetaInfo class
@Test
public void TestCurrencyMetaInfo() {