Imported Upstream version 58.1
[platform/upstream/icu.git] / source / test / intltest / itrbbi.h
1 // Copyright (C) 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /*
4 **********************************************************************
5 * Copyright (C) 1998-2016, International Business Machines Corporation 
6 * and others.  All Rights Reserved.
7 **********************************************************************
8 ************************************************************************
9 *   Date        Name        Description
10 *   12/14/99    Madhu        Creation.
11 ************************************************************************/
12 /**
13  * IntlTestRBBI is the top level test class for the RuleBasedBreakIterator tests
14  */
15
16 #ifndef INTLTESTRBBI_H
17 #define INTLTESTRBBI_H
18
19 #include "unicode/utypes.h"
20
21 #if !UCONFIG_NO_BREAK_ITERATION && !UCONFIG_NO_REGULAR_EXPRESSIONS
22
23 #include "intltest.h"
24
25
26 class IntlTestRBBI: public IntlTest {
27 public:
28     void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
29 };
30
31 #endif /* #if !UCONFIG_NO_BREAK_ITERATION && !UCONFIG_NO_REGULAR_EXPRESSIONS */
32
33 #endif