(t *testing.T)
| 217 | } |
| 218 | |
| 219 | func TestSameIDCompaction(t *testing.T) { |
| 220 | for _, enc := range encoding.AllEncodingsForWrites() { |
| 221 | t.Run(enc.Version(), func(t *testing.T) { |
| 222 | testSameIDCompaction(t, enc.Version()) |
| 223 | }) |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | // TestSameIDCompaction is a bit gross in that it has a bad dependency with on the /pkg/model |
| 228 | // module to do a full e2e compaction/combination test. |
nothing calls this directly
no test coverage detected