]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/cintltst/cintltst.h
ICU-64260.0.1.tar.gz
[apple/icu.git] / icuSources / test / cintltst / cintltst.h
index ef6a42f1c3d5d2620fbc88093a80803f5753634e..edb60eb58e8dd04ce82ba43b7053c1cd5e65ba9f 100644 (file)
@@ -25,11 +25,6 @@ The main root for C API tests
 #include "unicode/putil.h"
 #include "unicode/ctest.h"
 
-#if U_NO_DEFAULT_INCLUDE_UTF_HEADERS
-/* deprecated  - make tests pass with U_NO_DEFAULT_INCLUDE_UTF_HEADERS */
-#include "unicode/utf_old.h" 
-#endif
-
 #include <stdlib.h>
 
 #ifndef U_USE_DEPRECATED_API
@@ -140,6 +135,18 @@ U_CFUNC UBool assertTrue(const char* msg, int condition);
 U_CFUNC UBool assertEquals(const char* msg, const char* expectedString,
                            const char* actualString);
 
+/**
+ * Assert that the actualString equals the expectedString, and return
+ * TRUE if it does.
+ */
+U_CFUNC UBool assertUEquals(const char* msg, const UChar* expectedString,
+                            const UChar* actualString);
+
+/**
+ * Assert that two 64-bit integers are equal, returning TRUE if they do.
+ */
+U_CFUNC UBool assertIntEquals(const char* msg, int64_t expected, int64_t actual);
+
 /*
  * note - isICUVersionBefore and isICUVersionAtLeast have been removed.
  * use log_knownIssue() instead.