]> git.saurik.com Git - apple/icu.git/blob - icuSources/tools/ctestfw/unicode/testlog.h
ICU-6.2.8.tar.gz
[apple/icu.git] / icuSources / tools / ctestfw / unicode / testlog.h
1 /********************************************************************
2 * COPYRIGHT:
3 * Copyright (c) 2004, International Business Machines Corporation and
4 * others. All Rights Reserved.
5 ********************************************************************/
6
7 /* Created by grhoten 03/17/2004 */
8
9 /* Base class for data driven tests */
10
11 #ifndef U_TESTFW_TESTLOG
12 #define U_TESTFW_TESTLOG
13
14 #include "unicode/unistr.h"
15
16 /** Facilitates internal logging of data driven test service
17 * It would be interesting to develop this into a full
18 * fledged control system as in Java.
19 */
20 class TestLog {
21 public:
22 virtual void errln( const UnicodeString &message ) = 0;
23 virtual const char* getTestDataPath(UErrorCode& err) = 0;
24 };
25
26
27 #endif