1 /********************************************************************
2  * COPYRIGHT:
3  * Copyright (c) 1997-2001, International Business Machines Corporation and
4  * others. All Rights Reserved.
5  ********************************************************************/
6 
7 #ifndef _INTLTESTSIMPLEDATEFORMATAPI
8 #define _INTLTESTSIMPLEDATEFORMATAPI
9 
10 #include "unicode/utypes.h"
11 
12 #if !UCONFIG_NO_FORMATTING
13 
14 #include "intltest.h"
15 
16 /**
17  * Test basic functionality of various API functions
18  **/
19 class IntlTestSimpleDateFormatAPI : public IntlTest {
20     void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
21 
22 private:
23     /**
24      * Performs tests on many API functions, see detailed comments in source code
25      **/
26     void testAPI(/* char* par */);
27 };
28 
29 #endif /* #if !UCONFIG_NO_FORMATTING */
30 
31 #endif
32