Coverage Report - org.jbehave.core.reporters.ConsoleOutput
 
Classes in this File Line Coverage Branch Coverage Complexity
ConsoleOutput
100%
6/6
N/A
1
 
 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  
  * <p>
 10  
  * Story reporter that outputs as TXT to System.out.
 11  
  * </p>
 12  
  */
 13  
 public class ConsoleOutput extends TxtOutput {
 14  
 
 15  
         public ConsoleOutput() {
 16  388
                 this(new LocalizedKeywords());
 17  388
         }
 18  
 
 19  
         public ConsoleOutput(Keywords keywords) {
 20  389
                 this(new Properties(), keywords, false);
 21  389
         }
 22  
 
 23  
         public ConsoleOutput(Properties outputPatterns, Keywords keywords,
 24  
                         boolean reportFailureTrace) {
 25  389
                 super(System.out, outputPatterns, keywords, reportFailureTrace);
 26  389
         }
 27  
 
 28  
 }