Class StandardStreams
- java.lang.Object
-
- org.antublue.test.engine.internal.util.StandardStreams
-
public class StandardStreams extends Object
Class to implement StandardStreams
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidflush()Method to flush streamsstatic voidprint(String format, Object... objects)Method to print a line to System.out and flush streamsstatic voidprintln(String format, Object... objects)Method to print a line with newline to System.out and flush streams
-
-
-
Method Detail
-
print
public static void print(String format, Object... objects)
Method to print a line to System.out and flush streams- Parameters:
format- formatobjects- objects
-
println
public static void println(String format, Object... objects)
Method to print a line with newline to System.out and flush streams- Parameters:
format- formatobjects- objects
-
flush
public static void flush()
Method to flush streams
-
-