mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-21622 Add UYW to list of currencies from ucurr_openISOCurrencies()
This commit is contained in:
parent
d5cb201e52
commit
eed6388dab
4 changed files with 31 additions and 0 deletions
|
@ -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},
|
||||
|
|
|
@ -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) {
|
||||
|
|
13
icu4c/source/test/testdata/structLocale.txt
vendored
13
icu4c/source/test/testdata/structLocale.txt
vendored
|
@ -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{""}
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Add table
Reference in a new issue