(t *testing.T)
| 7 | ) |
| 8 | |
| 9 | func TestDefaultLint(t *testing.T) { |
| 10 | defConf := NewDefault() |
| 11 | _, err := NewLinter(defConf) |
| 12 | if err != nil { |
| 13 | t.Error("default lint creation failed", err) |
| 14 | return |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | func TestDefaultSettings(t *testing.T) { |
| 19 | defConf := NewDefault() |
nothing calls this directly
no test coverage detected