(t *testing.T)
| 56 | } |
| 57 | |
| 58 | func TestAddPrefixkv0(t *testing.T) { |
| 59 | got := prefix(context.Background()) |
| 60 | var want []byte = nil |
| 61 | if !reflect.DeepEqual(got, want) { |
| 62 | t.Errorf(`prefix(context.Background()) = %#v want %#v`, got, want) |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | func TestAddPrefixkv1(t *testing.T) { |
| 67 | ctx := context.Background() |