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