]> git.saurik.com Git - apple/icu.git/blame - icuSources/test/intltest/itutil.h
ICU-66108.tar.gz
[apple/icu.git] / icuSources / test / intltest / itutil.h
CommitLineData
f3c0d7a5
A
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
b75a7d8f
A
3/********************************************************************
4 * COPYRIGHT:
729e4ab9 5 * Copyright (c) 1997-2009, International Business Machines Corporation and
b75a7d8f
A
6 * others. All Rights Reserved.
7 ********************************************************************/
8
9/**
10 * MajorTestLevel is the top level test class for everything in the directory "IntlWork".
11 */
12
13#ifndef _INTLTESTUTILITIES
14#define _INTLTESTUTILITIES
15
b75a7d8f
A
16#include "intltest.h"
17
b75a7d8f
A
18class IntlTestUtilities: public IntlTest {
19public:
20 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
21};
22
729e4ab9
A
23class ErrorCodeTest: public IntlTest {
24public:
25 void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL);
26 void TestErrorCode();
27 void TestSubclass();
0f5d89e8 28 void TestIcuTestErrorCode();
729e4ab9 29};
b75a7d8f
A
30
31#endif