(t *testing.T)
| 614 | } |
| 615 | |
| 616 | func TestOpsDeferredSort(t *testing.T) { |
| 617 | m, err := NewCollection(CollectionOptions{ |
| 618 | MergeOperator: &MergeOperatorStringAppend{Sep: ":"}, |
| 619 | DeferredSort: true, |
| 620 | }) |
| 621 | if err != nil || m == nil { |
| 622 | t.Errorf("expected moss") |
| 623 | } |
| 624 | |
| 625 | m.Start() |
| 626 | testOps(t, m) |
| 627 | m.Close() |
| 628 | } |
| 629 | |
| 630 | type opTest struct { |
| 631 | op string |
nothing calls this directly
no test coverage detected
searching dependent graphs…