| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| SilentStepMonitor |
|
| 1.0;1 |
| 1 | package org.jbehave.core.steps; | |
| 2 | ||
| 3 | import java.io.PrintStream; | |
| 4 | ||
| 5 | /** | |
| 6 | * StepMonitor that prints nothings. | |
| 7 | */ | |
| 8 | 751 | public class SilentStepMonitor extends PrintStreamStepMonitor { |
| 9 | ||
| 10 | protected void print(PrintStream output, String message) { | |
| 11 | // print nothing | |
| 12 | 413 | } |
| 13 | ||
| 14 | } |