(t *testing.T)
| 641 | } |
| 642 | |
| 643 | func TestCompleteBlockHonorsStartStopTimes(t *testing.T) { |
| 644 | for _, enc := range encoding.AllEncodingsForWrites() { |
| 645 | version := enc.Version() |
| 646 | t.Run(version, func(t *testing.T) { |
| 647 | testCompleteBlockHonorsStartStopTimes(t, version) |
| 648 | }) |
| 649 | } |
| 650 | } |
| 651 | |
| 652 | func testCompleteBlockHonorsStartStopTimes(t *testing.T, targetBlockVersion string) { |
| 653 | tempDir := t.TempDir() |
nothing calls this directly
no test coverage detected