(t *testing.T)
| 34 | } |
| 35 | |
| 36 | func TestAllInputsHaveConfigHelp(t *testing.T) { |
| 37 | for _, input := range input.All { |
| 38 | assertValidConfigHelp(t, input.Name, input.Config) |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | func TestAllFiltersHaveConfigHelp(t *testing.T) { |
| 43 | for _, filter := range filter.All { |
nothing calls this directly
no test coverage detected