blob: e4f6d4fded42a3166c9662a809adc7bd55403751 [file] [log] [blame]
/**
*******************************************************************************
* Copyright (C) 2000-2003, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/dev/test/TestLog.java,v $
* $Date: 2003/06/03 18:49:28 $
* $Revision: 1.6 $
*
*******************************************************************************
*/
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);
/**
* Warn about missing tests or data.
*/
void warn(String message);
void warnln(String message);
public static final int LOG = 0;
public static final int WARN = 1;
public static final int ERR = 2;
void msg(String message, int level, boolean incCount, boolean newln);
}