1 /******************************************************************** 2 * COPYRIGHT: 3 * Copyright (c) 2011, International Business Machines Corporation and 4 * others. All Rights Reserved. 5 ********************************************************************/ 6 // 7 // file: alphaindex.h 8 // Alphabetic Index Tests. 9 // 10 11 #ifndef ALPHAINDEXTST_H 12 #define ALPHAINDEXTST_H 13 14 #include "intltest.h" 15 16 class AlphabeticIndexTest: public IntlTest { 17 public: 18 AlphabeticIndexTest(); 19 virtual ~AlphabeticIndexTest(); 20 21 virtual void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL ); 22 23 virtual void APITest(); 24 virtual void ManyLocalesTest(); 25 virtual void HackPinyinTest(); 26 }; 27 28 #endif 29