Class JUnitTask.JUnitLogOutputStream
java.lang.Object
java.io.OutputStream
org.apache.tools.ant.util.LineOrientedOutputStream
org.apache.tools.ant.taskdefs.LogOutputStream
org.apache.tools.ant.taskdefs.optional.junit.JUnitTask.JUnitLogOutputStream
- All Implemented Interfaces:
Closeable, Flushable, AutoCloseable
- Enclosing class:
JUnitTask
A stream handler for handling the junit task.
- Since:
- Ant 1.7
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidprocessLine(String line, int level) Logs a line.Methods inherited from class LogOutputStream
getMessageLevel, processBuffer, processLineModifier and TypeMethodDescriptionintGet the level.protected voidConverts the buffer to a string and sends it toprocessLineprotected voidprocessLine(String line) Logs a line to the log system of ant.Methods inherited from class LineOrientedOutputStream
close, flush, processLine, write, writeModifier and TypeMethodDescriptionvoidclose()Writes all remainingvoidflush()Flush this log streamprotected voidprocessLine(byte[] line) Processes a line.final voidwrite(byte[] b, int off, int len) Write a block of characters to the output streamfinal voidwrite(int cc) Write the data to the buffer and flush the buffer, if a line separator is detected.Methods inherited from class OutputStream
nullOutputStream, write
-
Constructor Details
-
JUnitLogOutputStream
Constructor.- Parameters:
task- the task being logged.level- the log level used to log data written to this stream.
-
-
Method Details
-
processLine
Logs a line. If the line starts with junit.framework.TestListener: set the level to MSG_VERBOSE.- Overrides:
processLinein classLogOutputStream- Parameters:
line- the line to log.level- the logging level to use.
-