(key, value string, rowNumbers ...int32)
| 606 | } |
| 607 | |
| 608 | func testResult(key, value string, rowNumbers ...int32) IteratorResult { |
| 609 | return IteratorResult{ |
| 610 | RowNumber: rn(rowNumbers...), |
| 611 | OtherEntries: []struct { |
| 612 | Key string |
| 613 | Value interface{} |
| 614 | }{ |
| 615 | {Key: key, Value: value}, |
| 616 | }, |
| 617 | } |
| 618 | } |
| 619 | |
| 620 | func clone(r *IteratorResult) IteratorResult { |
| 621 | o := IteratorResult{ |
no test coverage detected