• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /********************************************************************
4  * COPYRIGHT:
5  * Copyright (c) 1997-2009, International Business Machines Corporation and
6  * others. All Rights Reserved.
7  ********************************************************************/
8 
9 #ifndef _MESSAGEFORMATREGRESSIONTEST_
10 #define _MESSAGEFORMATREGRESSIONTEST_
11 
12 #include "unicode/utypes.h"
13 
14 #if !UCONFIG_NO_FORMATTING
15 
16 #include "intltest.h"
17 
18 /**
19  * Performs regression test for MessageFormat
20  **/
21 class MessageFormatRegressionTest: public IntlTest {
22 
23     // IntlTest override
24     void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) override;
25 public:
26 
27     void Test4074764();
28     void Test4058973();
29     void Test4031438();
30     void Test4052223();
31     void Test4104976();
32     void Test4106659();
33     void Test4106660();
34     void Test4111739();
35     void Test4114743();
36     void Test4116444();
37     void Test4114739();
38     void Test4113018();
39     void Test4106661();
40     void Test4094906();
41     void Test4118592();
42     void Test4118594();
43     void Test4105380();
44     void Test4120552();
45     void Test4142938();
46     void TestChoicePatternQuote();
47     void Test4112104();
48     void TestICU12584();
49     void TestICU22798();
50     void TestAPI();
51 
52 protected:
53     UBool failure(UErrorCode status, const char* msg, UBool possibleDataError=false);
54 
55 };
56 
57 #endif /* #if !UCONFIG_NO_FORMATTING */
58 
59 #endif // _MESSAGEFORMATREGRESSIONTEST_
60 //eof
61