2000-08-17 00:22:29 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
2001-03-21 20:09:56 +00:00
|
|
|
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
2000-08-17 00:22:29 +00:00
|
|
|
* others. All Rights Reserved.
|
|
|
|
********************************************************************/
|
|
|
|
|
|
|
|
#include "intltest.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test for APIs of CPPUnicodeConverter
|
|
|
|
**/
|
|
|
|
class ConvertTest: public IntlTest {
|
|
|
|
public:
|
|
|
|
ConvertTest() {};
|
2000-12-09 03:17:45 +00:00
|
|
|
virtual ~ConvertTest() {};
|
2000-08-17 00:22:29 +00:00
|
|
|
|
|
|
|
void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test everything
|
|
|
|
**/
|
|
|
|
void TestConvert(void);
|
|
|
|
void TestAmbiguous(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|