(t *testing.T, meta sorted.KeyValue)
| 271 | } |
| 272 | |
| 273 | func countSortedRows(t *testing.T, meta sorted.KeyValue) int { |
| 274 | rows := 0 |
| 275 | if err := sorted.Foreach(meta, func(key, value string) error { |
| 276 | rows++ |
| 277 | return nil |
| 278 | }); err != nil { |
| 279 | t.Fatal(err) |
| 280 | } |
| 281 | return rows |
| 282 | } |
| 283 | |
| 284 | func TestParseZipMetaRow(t *testing.T) { |
| 285 | tests := []struct { |
no test coverage detected