]>
git.saurik.com Git - apple/icu.git/blob - icuSources/test/intltest/regiontst.h
1 /************************************************************************
3 * Copyright (c) 2013, International Business Machines Corporation
4 * and others. All Rights Reserved.
5 ************************************************************************/
10 #include "unicode/utypes.h"
12 #if !UCONFIG_NO_FORMATTING
14 #include "unicode/region.h"
18 * Performs various tests on Region APIs
20 class RegionTest
: public IntlTest
{
22 void runIndexedTest( int32_t index
, UBool exec
, const char* &name
, char* par
);
26 virtual ~RegionTest();
28 void TestKnownRegions(void);
29 void TestGetInstanceString(void);
30 void TestGetInstanceInt(void);
31 void TestGetContainedRegions(void);
32 void TestGetContainedRegionsWithType(void);
33 void TestGetContainingRegion(void);
34 void TestGetContainingRegionWithType(void);
35 void TestGetPreferredValues(void);
36 void TestContains(void);
37 void TestAvailableTerritories(void);
38 void TestNoContainedRegions(void);
42 UBool optionv
; // TRUE if @v option is given on command line
45 #endif /* #if !UCONFIG_NO_FORMATTING */
47 #endif // _REGIONTEST_