Package org.jbehave.core.reporters

Source Code of org.jbehave.core.reporters.ConsoleOutput

package org.jbehave.core.reporters;

import java.util.Properties;

import org.jbehave.core.configuration.Keywords;
import org.jbehave.core.i18n.LocalizedKeywords;

/**
* <p>
* Story reporter that outputs as TXT to System.out.
* </p>
*/
public class ConsoleOutput extends TxtOutput {

  public ConsoleOutput() {
    this(new LocalizedKeywords());
  }

  public ConsoleOutput(Keywords keywords) {
    this(new Properties(), keywords, false);
  }

  public ConsoleOutput(Properties outputPatterns, Keywords keywords,
      boolean reportFailureTrace) {
    super(System.out, outputPatterns, keywords, reportFailureTrace);
  }

}
TOP

Related Classes of org.jbehave.core.reporters.ConsoleOutput

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.