35 lines
928 B
C
35 lines
928 B
C
|
|
||
|
/*
|
||
|
********************************************************************
|
||
|
* COPYRIGHT:
|
||
|
* (C) Copyright Taligent, Inc., 1997
|
||
|
* (C) Copyright International Business Machines Corporation, 1997 - 1998
|
||
|
* Licensed Material - Program-Property of IBM - All Rights Reserved.
|
||
|
* US Government Users Restricted Rights - Use, duplication, or disclosure
|
||
|
* restricted by GSA ADP Schedule Contract with IBM Corp.
|
||
|
*
|
||
|
********************************************************************
|
||
|
*/
|
||
|
|
||
|
#ifndef _INTLTESTDECIMALFORMATSYMBOLS
|
||
|
#define _INTLTESTDECIMALFORMATSYMBOLS
|
||
|
|
||
|
|
||
|
#include "utypes.h"
|
||
|
#include "intltest.h"
|
||
|
|
||
|
/**
|
||
|
* Tests for DecimalFormatSymbols
|
||
|
**/
|
||
|
class IntlTestDecimalFormatSymbols: public IntlTest {
|
||
|
void runIndexedTest( int32_t index, bool_t exec, char* &name, char* par = NULL );
|
||
|
|
||
|
private:
|
||
|
/**
|
||
|
* Test the API of DecimalFormatSymbols; primarily a simple get/set set.
|
||
|
*/
|
||
|
void testSymbols(char *par);
|
||
|
};
|
||
|
|
||
|
#endif
|