]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/intltest/tmsgfmt.h
ICU-511.27.tar.gz
[apple/icu.git] / icuSources / test / intltest / tmsgfmt.h
index 30c94435589b0bc7634e13fe2eaf3d24d63eee36..63dbf77b07dc81f7153f290f4153940c705d241c 100644 (file)
@@ -1,10 +1,8 @@
 /********************************************************************
  * COPYRIGHT: 
- * Copyright (c) 1997-2003, International Business Machines Corporation and
+ * Copyright (c) 1997-2012, International Business Machines Corporation and
  * others. All Rights Reserved.
  ********************************************************************/
-
-
 #ifndef _TESTMESSAGEFORMAT
 #define _TESTMESSAGEFORMAT
 
@@ -14,6 +12,7 @@
 
 #include "unicode/unistr.h"
 #include "unicode/fmtable.h"
+#include "unicode/msgfmt.h"
 #include "intltest.h"
 
 /**
@@ -56,6 +55,30 @@ public:
      * tests MesageFormat functionality with a format including a ChoiceFormat
      **/
     void testMsgFormatChoice(/* char* par */);
+    /** 
+     * tests MesageFormat functionality with a PluralFormat.
+     **/
+    void testMsgFormatPlural(/* char* par */);
+
+    /** 
+     * tests MessageFormat functionality with a SelectFormat.
+     **/
+    void testMsgFormatSelect(/* char* par */);
+
+    void testApostropheInPluralAndSelect();
+
+    /** 
+     * Internal method to format a MessageFormat object with passed args 
+     **/
+    void internalFormat(MessageFormat* msgFmt ,
+        Formattable* args , int32_t numOfArgs ,
+        UnicodeString expected, const char* errMsg);
+
+    /** 
+     * Internal method to create a MessageFormat object with passed args 
+     **/
+    MessageFormat* internalCreate(
+        UnicodeString pattern ,Locale locale , UErrorCode& err, char* errMsg);
 
     /**
      * Verify that MessageFormat accomodates more than 10 arguments
@@ -63,7 +86,15 @@ public:
      */
     void TestUnlimitedArgsAndSubformats();
 
-    //
+    /**
+     * Test RBNF extensions to MessageFormat.
+     */
+    void TestRBNF();
+
+    void TestApostropheMode();
+
+    void TestCompatibleApostrophe();
+
     /** 
      * ------------ API tests ----------
      * These routines test various API functionality.
@@ -80,8 +111,15 @@ public:
     void testFormat(void);
     void testParse(void);
     void testAdopt(void);
+    void TestTurkishCasing(void);
+    void testAutoQuoteApostrophe(void);
+    void testCoverage();
+    void testGetFormatNames();
+    void TestTrimArgumentName();
+    void TestSelectOrdinal();
 
 private:
+    UnicodeString GetPatternAndSkipSyntax(const MessagePattern& pattern);
 };
 
 #endif /* #if !UCONFIG_NO_FORMATTING */