mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-10 07:39:16 +00:00
ICU-5104 Add test for Portuguese number spellout
X-SVN-Rev: 22569
This commit is contained in:
parent
f348dd22ee
commit
2949a8fd76
3 changed files with 45 additions and 1 deletions
|
@ -29,7 +29,7 @@
|
|||
#endif
|
||||
|
||||
// Define this to test just a single locale
|
||||
//#define TEST_ONE_LOC "cs_CZ"
|
||||
#define TEST_ONE_LOC "bg_BG"
|
||||
|
||||
// If SPARSENESS is > 0, we don't run each exhaustive possibility.
|
||||
// There are 24 total possible tests per each locale. A SPARSENESS
|
||||
|
|
|
@ -64,6 +64,7 @@ void IntlTestRBNF::runIndexedTest(int32_t index, UBool exec, const char* &name,
|
|||
TESTCASE(14, TestLocalizations);
|
||||
TESTCASE(15, TestAllLocales);
|
||||
TESTCASE(16, TestHebrewFraction);
|
||||
TESTCASE(17, TestPortugueseSpellout);
|
||||
#else
|
||||
TESTCASE(0, TestRBNFDisabled);
|
||||
#endif
|
||||
|
@ -1360,6 +1361,44 @@ IntlTestRBNF::TestItalianSpellout()
|
|||
delete formatter;
|
||||
}
|
||||
|
||||
void
|
||||
IntlTestRBNF::TestPortugueseSpellout()
|
||||
{
|
||||
UErrorCode status = U_ZERO_ERROR;
|
||||
RuleBasedNumberFormat* formatter
|
||||
= new RuleBasedNumberFormat(URBNF_SPELLOUT, Locale("pt","BR",""), status);
|
||||
|
||||
if (U_FAILURE(status)) {
|
||||
errln("FAIL: could not construct formatter");
|
||||
} else {
|
||||
static const char* const testData[][2] = {
|
||||
{ "1", "um" },
|
||||
{ "15", "quinze" },
|
||||
{ "20", "vinte" },
|
||||
{ "23", "vinte e tr\\u00EAs" },
|
||||
{ "73", "setenta e tr\\u00EAs" },
|
||||
{ "88", "oitenta e oito" },
|
||||
{ "100", "cem" },
|
||||
{ "106", "cento e seis" },
|
||||
{ "108", "cento e oito" },
|
||||
{ "127", "cento e vinte e sete" },
|
||||
{ "181", "cento e oitenta e um" },
|
||||
{ "200", "duzcentos" },
|
||||
{ "579", "quinhentos e setenta e nove" },
|
||||
{ "1,000", "mil" },
|
||||
{ "2,000", "dois mil" },
|
||||
{ "3,004", "tr\\u00EAs mil e quatro" },
|
||||
{ "4,567", "quatro mil quinhentos e sessenta e sete" },
|
||||
{ "15,943", "quinze mil novecentos e quarenta e tr\\u00EAs" },
|
||||
{ "-36", "menos trinta e seis" },
|
||||
{ "234.567", "duzcentos e trinta e quatro ponto cinco seis sete" },
|
||||
{ NULL, NULL}
|
||||
};
|
||||
|
||||
doTest(formatter, testData, TRUE);
|
||||
}
|
||||
delete formatter;
|
||||
}
|
||||
void
|
||||
IntlTestRBNF::TestGermanSpellout()
|
||||
{
|
||||
|
|
|
@ -82,6 +82,11 @@ class IntlTestRBNF : public IntlTest {
|
|||
*/
|
||||
virtual void TestItalianSpellout();
|
||||
|
||||
/**
|
||||
* Perform a simple spot check on the Portuguese spellout rules
|
||||
*/
|
||||
virtual void TestPortugueseSpellout();
|
||||
|
||||
/**
|
||||
* Perform a simple spot check on the German spellout rules
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue