(t *testing.T)
| 135 | } |
| 136 | |
| 137 | func TestFindByTraceID(t *testing.T) { |
| 138 | for _, e := range encoding.AllEncodingsForWrites() { |
| 139 | t.Run(e.Version(), func(t *testing.T) { |
| 140 | t.Parallel() |
| 141 | testFindByTraceID(t, e) |
| 142 | }) |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | func testFindByTraceID(t *testing.T, e encoding.VersionedEncoding) { |
| 147 | f := func(ids [][]byte, objs []*tempopb.Trace, block common.WALBlock) { |
nothing calls this directly
no test coverage detected