2017-01-20 00:20:31 +00:00
|
|
|
// © 2016 and later: Unicode, Inc. and others.
|
2016-06-15 18:58:17 +00:00
|
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
2000-01-15 02:00:06 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
2016-05-31 21:45:07 +00:00
|
|
|
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
|
|
|
* others. All Rights Reserved.
|
2000-01-15 02:00:06 +00:00
|
|
|
********************************************************************/
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-08-31 18:02:09 +00:00
|
|
|
|
|
|
|
#ifndef TESTFORMATSMALLCLASSES_H
|
|
|
|
#define TESTFORMATSMALLCLASSES_H
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
#include "intltest.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* tests 3 smaller classes in the format library
|
|
|
|
**/
|
|
|
|
class TestFormatSmallClasses: public IntlTest {
|
|
|
|
/**
|
|
|
|
* runs tests in 4 local routines,
|
|
|
|
* performs test for API and funtionalty of 3 smaller format classes:
|
|
|
|
* ParsePosition in test_ParsePosition(),
|
|
|
|
* FieldPosition in test_FieldPosition(),
|
|
|
|
* Formattable in test_Formattable().
|
|
|
|
**/
|
2000-08-14 21:42:36 +00:00
|
|
|
void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
|
1999-08-16 21:50:52 +00:00
|
|
|
};
|
2001-08-31 18:02:09 +00:00
|
|
|
|
|
|
|
#endif
|