]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /******************************************************************** |
2 | * COPYRIGHT: | |
729e4ab9 | 3 | * Copyright (c) 1997-2009, International Business Machines Corporation and |
b75a7d8f A |
4 | * others. All Rights Reserved. |
5 | ********************************************************************/ | |
6 | ||
7 | /** | |
8 | * MajorTestLevel is the top level test class for everything in the directory "IntlWork". | |
9 | */ | |
10 | ||
11 | #ifndef _INTLTESTUTILITIES | |
12 | #define _INTLTESTUTILITIES | |
13 | ||
b75a7d8f A |
14 | #include "intltest.h" |
15 | ||
b75a7d8f A |
16 | class IntlTestUtilities: public IntlTest { |
17 | public: | |
18 | void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL ); | |
19 | }; | |
20 | ||
729e4ab9 A |
21 | class ErrorCodeTest: public IntlTest { |
22 | public: | |
23 | void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL); | |
24 | void TestErrorCode(); | |
25 | void TestSubclass(); | |
26 | }; | |
b75a7d8f A |
27 | |
28 | #endif |