OLD | NEW |
(Empty) | |
| 1 /******************************************************************** |
| 2 * COPYRIGHT: |
| 3 * Copyright (c) 1997-2009, International Business Machines Corporation and |
| 4 * others. All Rights Reserved. |
| 5 ********************************************************************/ |
| 6 |
| 7 /** |
| 8 * MajorTestLevel is the top level test class for everything in the directory "I
ntlWork". |
| 9 */ |
| 10 |
| 11 #ifndef _INTLTESTUTILITIES |
| 12 #define _INTLTESTUTILITIES |
| 13 |
| 14 #include "intltest.h" |
| 15 |
| 16 class IntlTestUtilities: public IntlTest { |
| 17 public: |
| 18 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par
= NULL ); |
| 19 }; |
| 20 |
| 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 }; |
| 27 |
| 28 #endif |
OLD | NEW |