(t *testing.T, kv *plugin.KVOperator, ctx context.Context, group, key string)
| 54 | } |
| 55 | |
| 56 | func mustDel(t *testing.T, kv *plugin.KVOperator, ctx context.Context, group, key string) { |
| 57 | if err := kv.Del(ctx, plugin.KVParams{Group: group, Key: key}); err != nil { |
| 58 | t.Fatalf("Failed to delete %s/%s: %v", group, key, err) |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | func assertNotFound(t *testing.T, kv *plugin.KVOperator, ctx context.Context, group, key string) { |
| 63 | val, err := kv.Get(ctx, plugin.KVParams{Group: group, Key: key}) |
no test coverage detected