(t *testing.T, TestKey []byte, value []byte)
| 17 | } |
| 18 | |
| 19 | func setValue(t *testing.T, TestKey []byte, value []byte) { |
| 20 | callFunc := func(txn *Transaction) { |
| 21 | s, err := GetString(txn, TestKey) |
| 22 | assert.NoError(t, err) |
| 23 | err = s.Set(value) |
| 24 | } |
| 25 | MockTest(t, callFunc) |
| 26 | } |
| 27 | |
| 28 | func getValue(t *testing.T, key []byte, value []byte) { |
| 29 | callFunc := func(txn *Transaction) { |
no test coverage detected