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