+ const UnicodeString& exp, UBool rt, UErrorCode errorCode);
+
+ void expect(NumberFormat* fmt, const Formattable& n,
+ const char *exp, UBool rt, UErrorCode errorCode) {
+ expect(fmt, n, UnicodeString(exp, ""), rt, errorCode);
+ }
+
+ void expect(NumberFormat* fmt, const Formattable& n,
+ const UnicodeString& exp, UErrorCode errorCode) {
+ expect(fmt, n, exp, TRUE, errorCode);
+ }