]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/intltest/rbbiapts.h
ICU-511.32.tar.gz
[apple/icu.git] / icuSources / test / intltest / rbbiapts.h
index ae759248cea82d050d38a7f58f9a1cd7aaaed38d..e31b1da190348e5a32a1652b675d4eebfb411ffa 100644 (file)
@@ -1,6 +1,6 @@
 /********************************************************************
  * COPYRIGHT: 
- * Copyright (c) 1999-2004, International Business Machines Corporation and
+ * Copyright (c) 1999-2011 International Business Machines Corporation and
  * others. All Rights Reserved.
  ********************************************************************/
 /************************************************************************
@@ -63,6 +63,12 @@ public:
 
     void RoundtripRule(const char *dataFile);
 
+    /**
+     * Test creating RuleBasedBreakIterator from RBBIData.
+     **/
+
+    void TestCreateFromRBBIData(void);
+
     /**
      * Tests grouping effect of 'single quotes' in rules.
      **/
@@ -80,6 +86,8 @@ public:
 
     void TestRegistration();
 
+    void TestRefreshInputText();
+
     /**
      *Internal subroutines
      **/
@@ -92,6 +100,18 @@ public:
 
 };
 
+/**
+ * Special class to enable testing of protected functions in RuleBasedBreakIterator
+ */
+class RBBIWithProtectedFunctions: public RuleBasedBreakIterator {
+public:
+    enum EDontAdopt {
+        kDontAdopt
+    };
+    RBBIWithProtectedFunctions(RBBIDataHeader* data, UErrorCode &status);
+    RBBIWithProtectedFunctions(const RBBIDataHeader* data, enum EDontAdopt dontAdopt, UErrorCode &status);
+};
+
 #endif /* #if !UCONFIG_NO_BREAK_ITERATION */
 
 #endif