Lines Matching defs:stdout

45     private final String stdout;
64 this.stdout = null;
81 * @param stdout
82 * stdout buffer to analyze
86 OutputAnalyzer(String stdout, String stderr) {
88 this.stdout = stdout;
94 * Verify that the stdout and stderr contents of output buffer contains the
107 + "' missing from stdout/stderr \n");
113 * Verify that the stdout contents of output buffer contains the string
124 + "' missing from stdout \n");
147 * Verify that the stdout and stderr contents of output buffer does not
159 + "' found in stdout \n");
170 * Verify that the stdout contents of output buffer does not contain the
182 + "' found in stdout \n");
206 * Verify that the stdout and stderr contents of output buffer matches the
221 + "' missing from stdout/stderr \n");
227 * Verify that the stdout contents of output buffer matches the pattern
239 + "' missing from stdout \n");
263 * Verify that the stdout and stderr contents of output buffer does not
275 throw new RuntimeException("'" + pattern + "' found in stdout: '"
288 * Verify that the stdout contents of output buffer does not match the
300 throw new RuntimeException("'" + pattern + "' found in stdout \n");
325 * is searched before stdout.
349 * stdout.
383 String msg = " stdout: [" + getStdout() + "];\n" + " stderr: [" + getStderr()
391 * Get the contents of the output buffer (stdout and stderr)
400 * Get the contents of the stdout buffer
402 * @return Content of the stdout buffer
405 return output == null ? stdout : output.getStdout();
428 * Print the stdout buffer to the given {@code PrintStream}.
449 * Get the contents of the output buffer (stdout and stderr) as list of strings.
511 * Verify that the stdout and stderr contents of output buffer match the
530 * Verify that the stdout contents of output buffer matches the
531 * {@code pattern} line by line. The whole stdout could be matched or
535 * The line from where stdout will be matched.
538 * The line until where stdout will be matched.