a line has been printed on child stderr
| 4 | * a line has been printed on child stderr |
| 5 | */ |
| 6 | public class StderrNewline implements Event { |
| 7 | public final String line; |
| 8 | |
| 9 | public StderrNewline(String line) { |
| 10 | this.line = line; |
| 11 | } |
| 12 | |
| 13 | @Override |
| 14 | public String toString() { |
| 15 | return "StderrNewline: { line='" + this.line + "' }"; |
| 16 | } |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected