(tb testing.TB, c *proto.Client, args ...interface{})
| 204 | } |
| 205 | |
| 206 | func directDoStringArrErr(tb testing.TB, c *proto.Client, args ...interface{}) ([]string, error) { |
| 207 | tb.Helper() |
| 208 | argList := interfaceToString(args) |
| 209 | |
| 210 | res, err := c.Do(argList...) |
| 211 | ok(tb, err) |
| 212 | return proto.ReadArray(res) |
| 213 | } |
| 214 | |
| 215 | func directDoStringErr(tb testing.TB, c *proto.Client, args ...interface{}) (string, error) { |
| 216 | tb.Helper() |
no test coverage detected