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