(t *testing.T)
| 568 | } |
| 569 | |
| 570 | func TestCompleteBlock(t *testing.T) { |
| 571 | for _, from := range encoding.AllEncodingsForWrites() { |
| 572 | for _, to := range encoding.AllEncodingsForWrites() { |
| 573 | t.Run(fmt.Sprintf("%s->%s", from.Version(), to.Version()), func(t *testing.T) { |
| 574 | t.Parallel() |
| 575 | testCompleteBlock(t, from.Version(), to.Version()) |
| 576 | }) |
| 577 | } |
| 578 | } |
| 579 | } |
| 580 | |
| 581 | func testCompleteBlock(t *testing.T, from, to string) { |
| 582 | _, w, _, _ := testConfig(t, time.Minute, func(c *Config) { |
nothing calls this directly
no test coverage detected