(t *testing.T)
| 98 | } |
| 99 | |
| 100 | func TestCheckGoodPaths(t *testing.T) { |
| 101 | for _, k := range GoodPaths { |
| 102 | err := checkPath(k) |
| 103 | assert.Equalf(t, nil, err, "for path %q", k) |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | func TestEncodeSet(t *testing.T) { |
| 108 | for _, x := range SetKVRM { |
nothing calls this directly
no test coverage detected