searchengine/cpix/tsrc/cpixunittest/inc/localetestinfos.h
changeset 10 afe194b6b1cd
equal deleted inserted replaced
9:d575fd691cf9 10:afe194b6b1cd
       
     1 #ifndef LOCALETESTINFOS_H_
       
     2 #define LOCALETESTINFOS_H_
       
     3 
       
     4 /**
       
     5  * Information around testing various locales.
       
     6  */
       
     7 
       
     8 struct EnglishLocale {
       
     9 	static const char* LOCALE;
       
    10 	static const char* FILES[];
       
    11 	static const wchar_t* QUERIES[];
       
    12 };
       
    13 
       
    14 struct FrenchLocale {
       
    15 	static const char* LOCALE;
       
    16 	static const char* FILES[];
       
    17 	static const wchar_t* QUERIES[];
       
    18 };
       
    19 
       
    20 struct HebrewLocale {
       
    21 	static const char* LOCALE;
       
    22 	static const char* FILES[];
       
    23 	static const wchar_t* QUERIES[];
       
    24 };
       
    25 
       
    26 struct ThaiLocale {
       
    27 	static const char* LOCALE;
       
    28 	static const char* FILES[];
       
    29 	static const wchar_t* QUERIES[];
       
    30 };
       
    31 
       
    32 struct ChineseLocale {
       
    33 	static const char* LOCALE;
       
    34 	static const char* FILES[];
       
    35 	static const wchar_t* QUERIES[];
       
    36 };
       
    37 
       
    38 struct KoreanLocale {
       
    39 	static const char* LOCALE;
       
    40 	static const char* FILES[];
       
    41 	static const wchar_t* QUERIES[];
       
    42 };
       
    43 
       
    44 struct JapaneseLocale {
       
    45 	static const char* LOCALE;
       
    46 	static const char* FILES[];
       
    47 	static const wchar_t* QUERIES[];
       
    48 };
       
    49 
       
    50 
       
    51 #endif /* LOCALETESTINFOS_H_ */