]>
Commit | Line | Data |
---|---|---|
f3c0d7a5 A |
1 | // © 2016 and later: Unicode, Inc. and others. |
2 | // License & terms of use: http://www.unicode.org/copyright.html | |
374ca955 | 3 | /* |
46f4442e A |
4 | ********************************************************************** |
5 | * Copyright (C) 2004-2008, International Business Machines | |
6 | * Corporation and others. All Rights Reserved. | |
7 | ********************************************************************** | |
8 | * file name: iotest.h | |
f3c0d7a5 | 9 | * encoding: UTF-8 |
46f4442e A |
10 | * tab size: 8 (not used) |
11 | * indentation:4 | |
12 | * | |
13 | * created on: 2004apr06 | |
14 | * created by: George Rhoten | |
15 | */ | |
374ca955 A |
16 | |
17 | #ifndef IOTEST_H | |
18 | #define IOTEST_H 1 | |
19 | ||
20 | #include "unicode/utypes.h" | |
21 | #include "unicode/ctest.h" | |
22 | ||
23 | U_CFUNC void | |
24 | addStringTest(TestNode** root); | |
25 | ||
26 | U_CFUNC void | |
27 | addFileTest(TestNode** root); | |
28 | ||
73c04bcf A |
29 | U_CFUNC void |
30 | addTranslitTest(TestNode** root); | |
31 | ||
32 | U_CFUNC void | |
33 | addStreamTests(TestNode** root); | |
34 | ||
374ca955 A |
35 | U_CDECL_BEGIN |
36 | extern const UChar NEW_LINE[]; | |
37 | extern const char C_NEW_LINE[]; | |
46f4442e | 38 | extern const char *STANDARD_TEST_FILE; |
374ca955 A |
39 | U_CDECL_END |
40 | ||
41 | #define STANDARD_TEST_NUM_RANGE 1000 | |
42 | ||
43 | ||
44 | #endif |