(t *testing.T)
| 425 | } |
| 426 | |
| 427 | func TestValues_InvalidInput(t *testing.T) { |
| 428 | _, err := Values("") |
| 429 | if err == nil { |
| 430 | t.Errorf("expected Values() to return an error on invalid input") |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | // customEncodedStrings is a slice of strings with a custom URL encoding |
| 435 | type customEncodedStrings []string |
nothing calls this directly
no test coverage detected
searching dependent graphs…