diff --git a/icu4c/source/test/intltest/normconf.cpp b/icu4c/source/test/intltest/normconf.cpp index 85603eaaf77..0492e214eee 100644 --- a/icu4c/source/test/intltest/normconf.cpp +++ b/icu4c/source/test/intltest/normconf.cpp @@ -111,7 +111,7 @@ void NormalizerConformanceTest::TestConformance(void) { ++failCount; } if ((count % 1000) == 0) { - logln((UnicodeString)"Line " + (count+1)); + logln((UnicodeString)"Line " + count); } } @@ -123,6 +123,20 @@ void NormalizerConformanceTest::TestConformance(void) { } else { logln((UnicodeString)"Total: " + passCount + " lines passed"); } + + /* + * ### TODO: test that all assigned characters that are not mentioned + * as single code points in column 1 + * do not change under any normalization. + * I.e., keep a list (UnicodeSet?) of all single code points in c1, + * then test that for all in (assigned-list) it is + * c1==NFC(c1)==NFD(c1)==NFKC(c1)==NFKD(c1)==FCD(c1) + * + * ### TODO: test FCD + * Idea: since FCD is not a normalization form with guaranteed results, + * test that quickCheck(NF*D(c1), isFCD)==TRUE and that quickCheck(FCD(NF*D(c1)), isNF*D)==TRUE. + * Also test special, controlled cases. + */ } /** @@ -147,46 +161,36 @@ UBool NormalizerConformanceTest::checkConformance(const UnicodeString* field, UnicodeString out; int32_t fieldNum; - /* ### TODO: reenable iterativeNorm() tests!! ### ### ### ### ### ### */ - for (int32_t i=0; isetText(input, status); @@ -498,7 +496,6 @@ void BasicNormalizerTest::backAndForth(Normalizer* iter, const UnicodeString& in errln("Forward/reverse mismatch for input " + hex(input) + ", forward: " + hex(forward) + ", backward: " + hex(reverse)); } -#endif } void BasicNormalizerTest::staticTest(Normalizer::EMode mode, int options, @@ -527,8 +524,6 @@ void BasicNormalizerTest::iterateTest(Normalizer* iter, UnicodeString tests[][3], int length, int outCol) { -#if 0 - /* ### TODO: reenable these tests when the Normalizer iteration API is completely reimplemented */ for (int i = 0; i < length; i++) { UnicodeString& input = tests[i][0]; @@ -539,7 +534,6 @@ void BasicNormalizerTest::iterateTest(Normalizer* iter, iter->setText(input, status); assertEqual(input, expect, iter, UnicodeString("ERROR: case ") + i + " "); } -#endif } void BasicNormalizerTest::assertEqual(const UnicodeString& input,