| 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 | 231 | this(new LocalizedKeywords()); |
| 17 | 231 | } |
| 18 | |
|
| 19 | |
public ConsoleOutput(Keywords keywords) { |
| 20 | 233 | this(new Properties(), keywords, false); |
| 21 | 233 | } |
| 22 | |
|
| 23 | |
public ConsoleOutput(Properties outputPatterns, Keywords keywords, |
| 24 | |
boolean reportFailureTrace) { |
| 25 | 233 | super(System.out, outputPatterns, keywords, reportFailureTrace); |
| 26 | 233 | } |
| 27 | |
|
| 28 | |
} |