blob: c1a88e806f3da36b680c2d32e7fad81afc0d4618 [file] [log] [blame]
/**
*******************************************************************************
* Copyright (C) 2001-2002, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/dev/test/TestLog.java,v $
* $Date: 2002/08/13 22:02:16 $
* $Revision: 1.3 $
*
*******************************************************************************
*/
package com.ibm.icu.dev.test;
public interface TestLog {
/**
* Adds given string to the log if we are in verbose mode.
*/
void log(String message);
void logln(String message);
/**
* Report an error
*/
void err(String message);
void errln(String message);
}