Lines Matching refs:log
73 * errorCount field and may optionally print a message to the log.
74 * Debugging information may also be added to the log via the log
76 * log only if the test is being run in verbose mode.
101 // Set up the log and reference streams. We use PrintWriters in order to
104 log = new PrintWriter(System.out,true);
156 e.getTargetException().printStackTrace(this.log);
183 * Adds given string to the log if we are in verbose mode.
185 protected void log( String message ) {
188 log.print( message );
193 log(message + System.getProperty("line.separator"));
202 log.print( message );
203 log.flush();
217 log.print(testName);
218 log.flush();
225 log.print("}");
230 log.println(" FAILED");
232 log.println(" Passed");
237 log.println(" {");
240 log.print(spaces.substring(0, distance * 2));
262 private PrintWriter log;