(t *testing.T)
| 29 | ) |
| 30 | |
| 31 | func TestAppendBlockStartEnd(t *testing.T) { |
| 32 | for _, e := range encoding.AllEncodingsForWrites() { |
| 33 | t.Run(e.Version(), func(t *testing.T) { |
| 34 | testAppendBlockStartEnd(t, e) |
| 35 | }) |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | func testAppendBlockStartEnd(t *testing.T, e encoding.VersionedEncoding) { |
| 40 | wal, err := New(&Config{ |
nothing calls this directly
no test coverage detected