(name string, args ...string)
| 37 | } |
| 38 | |
| 39 | func CallTest(name string, args ...string) *bytes.Buffer { |
| 40 | ctx := ContextTest(name, args...) |
| 41 | Call(ctx) |
| 42 | return ctx.Out.(*bytes.Buffer) |
| 43 | } |
| 44 | |
| 45 | func ctxString(buf io.Writer) string { |
| 46 | return buf.(*bytes.Buffer).String() |
no test coverage detected