• 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-2001, International Business Machines Corporation and
6  * others. All Rights Reserved.
7  ********************************************************************/
8 
9 #ifndef _DATEFORMATMISCTEST_
10 #define _DATEFORMATMISCTEST_
11 
12 #include "unicode/utypes.h"
13 
14 #if !UCONFIG_NO_FORMATTING
15 
16 #include "intltest.h"
17 
18 /**
19  * Performs miscellaneous tests for DateFormat, SimpleDateFormat, DateFormatSymbols
20  **/
21 class DateFormatMiscTests : public IntlTest {
22 
23     // IntlTest override
24     void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par );
25 public:
26 
27     void test4097450(void);
28     void test4099975(void);
29     void test4117335(void);
30 
31 protected:
32     UBool failure(UErrorCode status, const char* msg);
33 
34 };
35 
36 #endif /* #if !UCONFIG_NO_FORMATTING */
37 
38 #endif // _DATEFORMATMISCTEST_
39 //eof
40