(tb testing.TB, c *proto.Client, args ...interface{})
| 292 | } |
| 293 | |
| 294 | func directDoList(tb testing.TB, c *proto.Client, args ...interface{}) (interface{}, error) { |
| 295 | tb.Helper() |
| 296 | argList := interfaceToString(args) |
| 297 | |
| 298 | res, err := c.Do(argList...) |
| 299 | ok(tb, err) |
| 300 | return res, err |
| 301 | } |
nothing calls this directly
no test coverage detected