1 // © 2016 and later: Unicode, Inc. and others. 2 // License & terms of use: http://www.unicode.org/copyright.html 3 /* 4 ****************************************************************************** 5 * Copyright (C) 2003, International Business Machines Corporation and * 6 * others. All Rights Reserved. * 7 ****************************************************************************** 8 */ 9 10 // file: v32test.h 11 12 13 #ifndef V32TEST_H 14 #define V32TEST_H 15 16 #include "unicode/utypes.h" 17 18 #include "intltest.h" 19 20 21 class UVector32Test: public IntlTest { 22 public: 23 24 UVector32Test(); 25 virtual ~UVector32Test(); 26 27 virtual void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL ); 28 29 // The following are test functions that are visible from the intltest test framework. 30 virtual void UVector32_API(); 31 32 }; 33 34 #endif 35