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 "IntlWork".
9 */
10
11#ifndef _INTLTESTUTILITIES
12#define _INTLTESTUTILITIES
13
14#include "intltest.h"
15
16class IntlTestUtilities: public IntlTest {
17public:
18    void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
19};
20
21class ErrorCodeTest: public IntlTest {
22public:
23    void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL);
24    void TestErrorCode();
25    void TestSubclass();
26};
27
28#endif
29