12e5b6d6dSopenharmony_ci// © 2016 and later: Unicode, Inc. and others. 22e5b6d6dSopenharmony_ci// License & terms of use: http://www.unicode.org/copyright.html 32e5b6d6dSopenharmony_ci/******************************************************************** 42e5b6d6dSopenharmony_ci * COPYRIGHT: 52e5b6d6dSopenharmony_ci * Copyright (c) 2001, International Business Machines Corporation and 62e5b6d6dSopenharmony_ci * others. All Rights Reserved. 72e5b6d6dSopenharmony_ci ********************************************************************/ 82e5b6d6dSopenharmony_ci/************************************************************************ 92e5b6d6dSopenharmony_ci* Date Name Description 102e5b6d6dSopenharmony_ci* 12/14/99 Madhu Creation. 112e5b6d6dSopenharmony_ci************************************************************************/ 122e5b6d6dSopenharmony_ci/** 132e5b6d6dSopenharmony_ci * IntlTestRBBI is the top level test class for the RuleBasedBreakIterator tests 142e5b6d6dSopenharmony_ci */ 152e5b6d6dSopenharmony_ci 162e5b6d6dSopenharmony_ci#ifndef INTLTRANSLIT_H 172e5b6d6dSopenharmony_ci#define INTLTRANSLIT_H 182e5b6d6dSopenharmony_ci 192e5b6d6dSopenharmony_ci#include "unicode/utypes.h" 202e5b6d6dSopenharmony_ci 212e5b6d6dSopenharmony_ci#if !UCONFIG_NO_TRANSLITERATION 222e5b6d6dSopenharmony_ci 232e5b6d6dSopenharmony_ci#include "intltest.h" 242e5b6d6dSopenharmony_ci 252e5b6d6dSopenharmony_ci 262e5b6d6dSopenharmony_ciclass IntlTestTransliterator: public IntlTest { 272e5b6d6dSopenharmony_cipublic: 282e5b6d6dSopenharmony_ci void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL ) override; 292e5b6d6dSopenharmony_ci}; 302e5b6d6dSopenharmony_ci 312e5b6d6dSopenharmony_ci#endif /* #if !UCONFIG_NO_TRANSLITERATION */ 322e5b6d6dSopenharmony_ci 332e5b6d6dSopenharmony_ci#endif 34