+ /**
+ * Replaces isICUVersionAtLeast and isICUVersionBefore
+ * log that an issue is known.
+ * Usually used this way:
+ * <code>if( ... && logKnownIssue("12345", "some bug")) continue; </code>
+ * @param ticket ticket string, "12345" or "cldrbug:1234"
+ * @param message optional message string
+ * @return true if test should be skipped
+ */
+ UBool logKnownIssue( const char *ticket, const UnicodeString &message );
+ /**
+ * Replaces isICUVersionAtLeast and isICUVersionBefore
+ * log that an issue is known.
+ * Usually used this way:
+ * <code>if( ... && logKnownIssue("12345", "some bug")) continue; </code>
+ * @param ticket ticket string, "12345" or "cldrbug:1234"
+ * @return true if test should be skipped
+ */
+ UBool logKnownIssue( const char *ticket );
+ /**
+ * Replaces isICUVersionAtLeast and isICUVersionBefore
+ * log that an issue is known.
+ * Usually used this way:
+ * <code>if( ... && logKnownIssue("12345", "some bug")) continue; </code>
+ * @param ticket ticket string, "12345" or "cldrbug:1234"
+ * @param message optional message string
+ * @return true if test should be skipped
+ */
+ UBool logKnownIssue( const char *ticket, const char *fmt, ...);
+