| 1 | |
package org.jbehave.core.embedder; |
| 2 | |
|
| 3 | |
import java.io.File; |
| 4 | |
import java.io.PrintStream; |
| 5 | |
import java.util.List; |
| 6 | |
import java.util.Properties; |
| 7 | |
|
| 8 | |
import org.jbehave.core.reporters.ReportsCount; |
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
public class ReportingFailuresEmbedderMonitor extends PrintStreamEmbedderMonitor { |
| 14 | |
|
| 15 | |
public ReportingFailuresEmbedderMonitor() { |
| 16 | 1 | this(System.out); |
| 17 | 1 | } |
| 18 | |
|
| 19 | |
public ReportingFailuresEmbedderMonitor(PrintStream output) { |
| 20 | 2 | super(output); |
| 21 | 2 | } |
| 22 | |
|
| 23 | |
@Override |
| 24 | |
public void runningEmbeddable(String name) { |
| 25 | 1 | } |
| 26 | |
|
| 27 | |
@Override |
| 28 | |
public void runningStory(String path) { |
| 29 | 1 | } |
| 30 | |
|
| 31 | |
@Override |
| 32 | |
public void generatingReportsView(File outputDirectory, List<String> formats, Properties viewProperties) { |
| 33 | 1 | } |
| 34 | |
|
| 35 | |
@Override |
| 36 | |
public void reportsViewGenerated(ReportsCount count) { |
| 37 | 1 | } |
| 38 | |
|
| 39 | |
} |