OLD | NEW |
| (Empty) |
1 /* | |
2 * | |
3 * (C) Copyright IBM Corp. 1998-2013 - All Rights Reserved | |
4 * | |
5 */ | |
6 | |
7 #ifndef __XMLREADER_H | |
8 #define __XMLREADER_H | |
9 | |
10 #include "LETypes.h" | |
11 #include "letest.h" | |
12 | |
13 typedef void (*TestCaseCallback) (const char *testID, | |
14 const char *fo
ntName, | |
15 const char *fo
ntVersion, | |
16 const char *fo
ntChecksum, | |
17 le_int32 scrip
tCode, | |
18 le_int32 langu
ageCode, | |
19 const LEUnicod
e *text, | |
20 le_int32 charC
ount, | |
21 TestResult *ex
pected); | |
22 | |
23 U_CAPI void readTestFile(const char *testFilePath, TestCaseCallback callback); | |
24 | |
25 #endif | |
OLD | NEW |