(t *testing.T, d *DistinctString)
| 82 | } |
| 83 | |
| 84 | func readDistinctStringDiff(t *testing.T, d *DistinctString) []string { |
| 85 | res, err := d.Diff() |
| 86 | require.NoError(t, err) |
| 87 | return res |
| 88 | } |
| 89 | |
| 90 | func TestDistinctStringCollectorIsSafe(t *testing.T) { |
| 91 | d := NewDistinctString(0, 0, 0) // no limit |
no test coverage detected