/********************************************************************
* COPYRIGHT:
- * Copyright (c) 1996-2006, International Business Machines Corporation and
+ * Copyright (c) 1996-2012, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
/********************************************************************************
void addURegexTest(TestNode** root);
void addUTextTest(TestNode** root);
void addUCsdetTest(TestNode** root);
-
+void addCnvSelTest(TestNode** root);
+void addUSpoofTest(TestNode** root);
+#if !UCONFIG_NO_FORMATTING
+void addGendInfoForTest(TestNode** root);
+#endif
void addAllTests(TestNode** root)
{
+ addCnvSelTest(root);
addUDataTest(root);
addHeapMutexTest(root);
- addPUtilTest(root);
addUTF16Test(root);
addUTF8Test(root);
addUtility(root);
#if !UCONFIG_NO_TRANSLITERATION
addUTransTest(root);
#endif
+#if !UCONFIG_NO_REGULAR_EXPRESSIONS && !UCONFIG_NO_NORMALIZATION
+ addUSpoofTest(root);
+#endif
+ addPUtilTest(root);
+#if !UCONFIG_NO_FORMATTING
+ addGendInfoForTest(root);
+#endif
}
-