blob: 093f4513c0be31d4c5caed58585bd4ece4789984 [file] [log] [blame]
Matthias Andreas Benkard832a54e2019-01-29 09:27:38 +01001package remote
2
3/*
4The OutputInterceptor is used by the ForwardingReporter to
5intercept and capture all stdin and stderr output during a test run.
6*/
7type OutputInterceptor interface {
8 StartInterceptingOutput() error
9 StopInterceptingAndReturnOutput() (string, error)
10}