(b *testing.B)
| 113 | } |
| 114 | |
| 115 | func BenchmarkEncodeSet(b *testing.B) { |
| 116 | for i := 0; i < b.N; i++ { |
| 117 | EncodeSet("/x", "a", Clobber) |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | func TestEncodeDel(t *testing.T) { |
| 122 | for _, x := range DelKVRM { |
nothing calls this directly
no test coverage detected