(tb testing.TB, c *proto.Client, args ...interface{})
| 186 | } |
| 187 | |
| 188 | func directDoNotParse(tb testing.TB, c *proto.Client, args ...interface{}) (string, error) { |
| 189 | tb.Helper() |
| 190 | argList := interfaceToString(args) |
| 191 | return c.Do(argList...) |
| 192 | } |
| 193 | |
| 194 | func directDoString(tb testing.TB, c *proto.Client, args ...interface{}) string { |
| 195 | tb.Helper() |
nothing calls this directly
no test coverage detected