diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-29 12:14:03 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-29 12:14:03 +0200 |
commit | 70b598ac14bf5b8e9af4188dbccef332a40a6562 (patch) | |
tree | 08de10c35c5edee640ff762fb94b276579a5e8f6 /i18npool/qa | |
parent | 8c8ba8df11eafa7ddb6e65b3c4f11faafb7b6403 (diff) |
Bring test function lists in sync
Change-Id: Ic91ddc695e9f3c7d8ba4d2bb67c8c84de2a22d5c
Diffstat (limited to 'i18npool/qa')
-rw-r--r-- | i18npool/qa/cppunit/test_breakiterator.cxx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/i18npool/qa/cppunit/test_breakiterator.cxx b/i18npool/qa/cppunit/test_breakiterator.cxx index 166717f7e339..e0a797b73199 100644 --- a/i18npool/qa/cppunit/test_breakiterator.cxx +++ b/i18npool/qa/cppunit/test_breakiterator.cxx @@ -48,26 +48,27 @@ public: void testKhmer(); void testJapanese(); void testChinese(); + CPPUNIT_TEST_SUITE(TestBreakIterator); CPPUNIT_TEST(testLineBreaking); + CPPUNIT_TEST(testWordBoundaries); CPPUNIT_TEST(testGraphemeIteration); CPPUNIT_TEST(testWeak); CPPUNIT_TEST(testAsian); CPPUNIT_TEST(testThai); +#if (U_ICU_VERSION_MAJOR_NUM > 51) + CPPUNIT_TEST(testLao); +#endif #ifdef TODO CPPUNIT_TEST(testNorthernThai); #endif - - CPPUNIT_TEST(testWordBoundaries); #if (U_ICU_VERSION_MAJOR_NUM > 4) CPPUNIT_TEST(testKhmer); #endif -#if (U_ICU_VERSION_MAJOR_NUM > 51) - CPPUNIT_TEST(testLao); -#endif CPPUNIT_TEST(testJapanese); CPPUNIT_TEST(testChinese); CPPUNIT_TEST_SUITE_END(); + private: uno::Reference<i18n::XBreakIterator> m_xBreak; void doTestJapanese(uno::Reference< i18n::XBreakIterator > &xBreak); |