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-2010, International Business Machines Corporation and
6  * others. All Rights Reserved.
7  * Copyright (C) 2010 , Yahoo! Inc.
8  ********************************************************************/
9 
10 #ifndef _SELECTFORMATTEST
11 #define _SELECTFORMATTEST
12 
13 #include "unicode/utypes.h"
14 #include "unicode/selfmt.h"
15 
16 
17 #if !UCONFIG_NO_FORMATTING
18 
19 #include "intltest.h"
20 
21 /**
22  * Test basic functionality of various API functions
23  **/
24 class SelectFormatTest : public IntlTest {
25     void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
26 
27 private:
28     /**
29      * Performs tests on many API functions, see detailed comments in source code
30      **/
31     void selectFormatAPITest(/* char* par */);
32     void selectFormatUnitTest(/* char* par */);
33 };
34 
35 #endif /* #if !UCONFIG_NO_FORMATTING */
36 
37 #endif
38