must0 is a mustDo() which expects a `0` response
(tb testing.TB, c *proto.Client, args ...string)
| 107 | |
| 108 | // must0 is a mustDo() which expects a `0` response |
| 109 | func must0(tb testing.TB, c *proto.Client, args ...string) { |
| 110 | tb.Helper() |
| 111 | mustDo(tb, c, append(args, proto.Int(0))...) |
| 112 | } |
| 113 | |
| 114 | // must1 is a mustDo() which expects a `1` response |
| 115 | func must1(tb testing.TB, c *proto.Client, args ...string) { |
no test coverage detected