1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-2016, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
#ifndef _TESTMESSAGEFORMAT
#define _TESTMESSAGEFORMAT
#include "unicode/utypes.h"
#if !UCONFIG_NO_FORMATTING
#include "unicode/unistr.h"
#include "unicode/fmtable.h"
#include "unicode/msgfmt.h"
#include "intltest.h"
/**
* TestMessageFormat tests MessageFormat, and also a few unctions in ChoiceFormat
*/
class TestMessageFormat: public IntlTest {
public:
void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = nullptr ) override;
/**
* regression test for a specific bug regarding ChoiceFormat boundaries
**/
void testBug1();
/**
* regression test for a specific bug regarding MessageFormat using ChoiceFormat
**/
void testBug2();
/**
* regression test for a specific bug involving NumberFormat and Locales
**/
void testBug3();
/**
* test MessageFormat with various given patterns
**/
void PatternTest();
/**
* test MesageFormat formatting functionality in a simple example
**/
void sample();
/**
* tests the static MessageFormat::format method
**/
void testStaticFormat(/* char* par */);
/**
* tests MesageFormat functionality with a simple format
**/
void testSimpleFormat(/* char* par */);
/**
* 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 accommodates more than 10 arguments
* and more than 10 subformats.
*/
void TestUnlimitedArgsAndSubformats();
/**
* Test RBNF extensions to MessageFormat.
*/
void TestRBNF();
void TestApostropheMode();
void TestCompatibleApostrophe();
/**
* ------------ API tests ----------
* These routines test various API functionality.
* In addition to the methods their name suggests,
* they often test other methods as well.
**/
void testCopyConstructor();
void testCopyConstructor2();
void testAssignment();
void testClone();
void testEquals();
void testNotEquals();
void testSetLocale();
void testFormat();
void testParse();
void testAdopt();
void TestTurkishCasing();
void testAutoQuoteApostrophe();
void testCoverage();
void testGetFormatNames();
void TestTrimArgumentName();
void TestSelectOrdinal();
void TestDecimals();
void TestArgIsPrefixOfAnother();
void TestMessageFormatNumberSkeleton();
void TestMessageFormatDateSkeleton();
void TestMessageFormatTimeSkeleton();
void TestNumberOverflow();
private:
UnicodeString GetPatternAndSkipSyntax(const MessagePattern& pattern);
void doTheRealDateTimeSkeletonTesting(UDate testDate,
const char16_t* messagePattern, const char* localeName, const char16_t* expected,
IcuTestErrorCode& status);
};
#endif /* #if !UCONFIG_NO_FORMATTING */
#endif
|