(t *testing.T)
| 391 | } |
| 392 | |
| 393 | func TestDistinct_Empty(t *testing.T) { |
| 394 | assert.Equal(t, []string(nil), util.SliceDistinct([]string{})) |
| 395 | } |
| 396 | |
| 397 | func TestDistinct_WithoutDuplicateItems(t *testing.T) { |
| 398 | items := []string{"foo", "bar", "baz"} |
nothing calls this directly
no test coverage detected