MGetEqualErr verify that the return value of the mget operation is correct
(t *testing.T, errValue string, args ...interface{})
| 254 | |
| 255 | //MGetEqualErr verify that the return value of the mget operation is correct |
| 256 | func (es *ExampleString) MGetEqualErr(t *testing.T, errValue string, args ...interface{}) { |
| 257 | _, err := es.conn.Do("Mget", args...) |
| 258 | assert.EqualError(t, err, errValue) |
| 259 | } |
| 260 | |
| 261 | //MSetEqual verify that the return value of the mset operation is correct |
| 262 | func (es *ExampleString) MSetEqual(t *testing.T, args ...string) { |