(t *testing.T, stdout *bytes.Buffer)
| 73 | } |
| 74 | |
| 75 | func decodeRemoveOutput(t *testing.T, stdout *bytes.Buffer) removeOutput { |
| 76 | t.Helper() |
| 77 | |
| 78 | return decodeRemoveOutputString(t, stdout.String()) |
| 79 | } |
| 80 | |
| 81 | func decodeRemoveOutputString(t *testing.T, output string) removeOutput { |
| 82 | t.Helper() |
no test coverage detected