(t *testing.T)
| 169 | } |
| 170 | |
| 171 | func TestCommaSeparatedStringToSlice(t *testing.T) { |
| 172 | assert.Equal(t, []string{}, commaSeparatedStringToSlice("")) |
| 173 | assert.Equal(t, []string{"foo", "bar", "baz"}, commaSeparatedStringToSlice(" foo , bar , baz ")) |
| 174 | } |
| 175 | |
| 176 | func TestFilterEmptyStrings(t *testing.T) { |
| 177 | assert.Equal(t, []string{}, excludeEmptyEntries([]string{})) |
nothing calls this directly
no test coverage detected