scuffed-code/icu4c/source/test/intltest/itrbbi.cpp

49 lines
1.4 KiB
C++
Raw Normal View History

2000-01-15 01:51:06 +00:00
/*
**********************************************************************
* Copyright (C) 1998-2001, International Business Machines Corporation
* and others. All Rights Reserved.
**********************************************************************
2000-01-15 01:51:06 +00:00
*/
/***********************************************************************
* Date Name Description
* 12/14/99 Madhu Creation.
***********************************************************************/
/**
* IntlTestRBBI is the medium level test class for RuleBasedBreakIterator
*/
#include "unicode/utypes.h"
#if !UCONFIG_NO_BREAK_ITERATION
2000-01-15 01:51:06 +00:00
#include "itrbbi.h"
#include "rbbiapts.h"
#include "rbbitst.h"
void IntlTestRBBI::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par )
2000-01-15 01:51:06 +00:00
{
if (exec) logln("TestSuite RuleBasedBreakIterator: ");
switch (index) {
case 0:
name = "RBBIAPITest";
if (exec) {
logln("RBBIAPITest--"); logln("");
RBBIAPITest test;
callTest( test, par );
}
break;
case 1:
name = "RBBITest";
if (exec) {
logln("RBBITest---"); logln("");
RBBITest test;
callTest( test, par );
}
break;
default: name=""; break;
2000-08-11 22:26:55 +00:00
}
2000-01-15 01:51:06 +00:00
}
#endif /* #if !UCONFIG_NO_BREAK_ITERATION */