(t *testing.T)
| 40 | } |
| 41 | |
| 42 | func TestAllFiltersHaveConfigHelp(t *testing.T) { |
| 43 | for _, filter := range filter.All { |
| 44 | assertValidConfigHelp(t, filter.Name, filter.Config) |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | func TestAllOutputsHaveConfigHelp(t *testing.T) { |
| 49 | for _, output := range output.All { |
nothing calls this directly
no test coverage detected