]> git.saurik.com Git - apple/icu.git/blame - icuSources/test/intltest/itutil.h
ICU-551.51.tar.gz
[apple/icu.git] / icuSources / test / intltest / itutil.h
CommitLineData
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
16class IntlTestUtilities: public IntlTest {
17public:
18 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
19};
20
729e4ab9
A
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};
b75a7d8f
A
27
28#endif