(t *testing.T)
| 210 | } |
| 211 | |
| 212 | func TestSearch(t *testing.T) { |
| 213 | for _, e := range encoding.AllEncodingsForWrites() { |
| 214 | t.Run(e.Version(), func(t *testing.T) { |
| 215 | t.Parallel() |
| 216 | testSearch(t, e) |
| 217 | }) |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | func testSearch(t *testing.T, e encoding.VersionedEncoding) { |
| 222 | runWALTest(t, e.Version(), func(ids [][]byte, objs []*tempopb.Trace, block common.WALBlock) { |
nothing calls this directly
no test coverage detected