You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.5 KiB
48 lines
1.5 KiB
// © 2016 and later: Unicode, Inc. and others.
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
|
/********************************************************************
|
|
* COPYRIGHT:
|
|
* Copyright (c) 2010-2016, International Business Machines Corporation
|
|
* and others. All Rights Reserved.
|
|
********************************************************************/
|
|
|
|
#include "intltest.h"
|
|
#include "unicode/locdspnm.h"
|
|
|
|
/**
|
|
* Tests for the LocaleDisplayNames class
|
|
**/
|
|
class LocaleDisplayNamesTest: public IntlTest {
|
|
public:
|
|
LocaleDisplayNamesTest();
|
|
virtual ~LocaleDisplayNamesTest();
|
|
|
|
void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL);
|
|
|
|
#if !UCONFIG_NO_FORMATTING
|
|
/**
|
|
* Test methods to set and get data fields
|
|
**/
|
|
void TestCreate(void);
|
|
void TestCreateDialect(void);
|
|
void TestWithKeywordsAndEverything(void);
|
|
void TestUldnOpen(void);
|
|
void TestUldnOpenDialect(void);
|
|
void TestUldnWithKeywordsAndEverything(void);
|
|
void TestUldnComponents(void);
|
|
void TestRootEtc(void);
|
|
void TestCurrencyKeyword(void);
|
|
void TestUnknownCurrencyKeyword(void);
|
|
void TestUntranslatedKeywords(void);
|
|
void TestPrivateUse(void);
|
|
void TestUldnDisplayContext(void);
|
|
void TestUldnWithGarbage(void);
|
|
void TestSubstituteHandling(void);
|
|
void TestNumericRegionID(void);
|
|
|
|
void VerifySubstitute(LocaleDisplayNames* ldn);
|
|
void VerifyNoSubstitute(LocaleDisplayNames* ldn);
|
|
#endif
|
|
|
|
};
|