(t *testing.T)
| 248 | } |
| 249 | |
| 250 | func TestFetch(t *testing.T) { |
| 251 | for _, e := range encoding.AllEncodingsForWrites() { |
| 252 | t.Run(e.Version(), func(t *testing.T) { |
| 253 | t.Parallel() |
| 254 | testFetch(t, e) |
| 255 | }) |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | func testFetch(t *testing.T, e encoding.VersionedEncoding) { |
| 260 | runWALTest(t, e.Version(), func(ids [][]byte, objs []*tempopb.Trace, block common.WALBlock) { |
nothing calls this directly
no test coverage detected