(t *testing.T)
| 772 | } |
| 773 | |
| 774 | func TestCompactWithConfig(t *testing.T) { |
| 775 | for _, enc := range encoding.AllEncodingsForWrites() { |
| 776 | t.Run(enc.Version(), func(t *testing.T) { |
| 777 | t.Parallel() |
| 778 | testCompactWithConfig(t, enc.Version()) |
| 779 | }) |
| 780 | } |
| 781 | } |
| 782 | |
| 783 | func testCompactWithConfig(t *testing.T, targetBlockVersion string) { |
| 784 | tempDir := t.TempDir() |
nothing calls this directly
no test coverage detected