]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/tools/ctestfw/unicode/testlog.h
ICU-57166.0.1.tar.gz
[apple/icu.git] / icuSources / tools / ctestfw / unicode / testlog.h
index 83abd5972d123122f18559118cd8025e546bd0db..6a6e0678b42fc21bcdba6e4ae7c7eca8396ed022 100644 (file)
@@ -1,6 +1,6 @@
 /********************************************************************
  * COPYRIGHT: 
- * Copyright (c) 2004, International Business Machines Corporation and
+ * Copyright (c) 2004-2010, International Business Machines Corporation and
  * others. All Rights Reserved.
  ********************************************************************/
 
 #ifndef U_TESTFW_TESTLOG
 #define U_TESTFW_TESTLOG
 
+#include "unicode/errorcode.h"
 #include "unicode/unistr.h"
+#include "unicode/testtype.h"
 
 /** Facilitates internal logging of data driven test service 
  *  It would be interesting to develop this into a full      
  *  fledged control system as in Java.                       
  */
-class TestLog {
+class T_CTEST_EXPORT_API TestLog {
 public:
+    virtual ~TestLog();
     virtual void errln( const UnicodeString &message ) = 0;
+    virtual void logln( const UnicodeString &message ) = 0;
+    virtual void dataerrln( const UnicodeString &message ) = 0;
     virtual const char* getTestDataPath(UErrorCode& err) = 0;
 };
 
+class T_CTEST_EXPORT_API IcuTestErrorCode : public ErrorCode {
+public:
+    IcuTestErrorCode(TestLog &callingTestClass, const char *callingTestName) :
+        testClass(callingTestClass), testName(callingTestName) {}
+    virtual ~IcuTestErrorCode();
+    // Returns TRUE if isFailure().
+    UBool logIfFailureAndReset(const char *fmt, ...);
+    UBool logDataIfFailureAndReset(const char *fmt, ...);
+protected:
+    virtual void handleFailure() const;
+private:
+    TestLog &testClass;
+    const char *const testName;
+};
 
 #endif