1 | |
package org.jbehave.core.reporters; |
2 | |
|
3 | |
import java.util.Properties; |
4 | |
|
5 | |
import org.jbehave.core.configuration.Keywords; |
6 | |
import org.jbehave.core.i18n.LocalizedKeywords; |
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
public class ConsoleOutput extends TxtOutput { |
14 | |
|
15 | |
public ConsoleOutput() { |
16 | 316 | this(new LocalizedKeywords()); |
17 | 316 | } |
18 | |
|
19 | |
public ConsoleOutput(Keywords keywords) { |
20 | 321 | this(new Properties(), keywords, false); |
21 | 321 | } |
22 | |
|
23 | |
public ConsoleOutput(Properties outputPatterns, Keywords keywords, |
24 | |
boolean reportFailureTrace) { |
25 | 321 | super(System.out, outputPatterns, keywords, reportFailureTrace); |
26 | 321 | } |
27 | |
|
28 | |
} |