(tb testing.TB, c *proto.Client, args ...interface{})
| 179 | } |
| 180 | |
| 181 | func directDo(tb testing.TB, c *proto.Client, args ...interface{}) { |
| 182 | tb.Helper() |
| 183 | argList := interfaceToString(args) |
| 184 | _, err := c.Do(argList...) |
| 185 | ok(tb, err) |
| 186 | } |
| 187 | |
| 188 | func directDoNotParse(tb testing.TB, c *proto.Client, args ...interface{}) (string, error) { |
| 189 | tb.Helper() |
no test coverage detected