1
0
mirror of https://github.com/mgechev/revive.git synced 2025-01-10 03:17:11 +02:00
revive/test/unhandled-error_test.go

26 lines
548 B
Go
Raw Normal View History

package test
import (
"testing"
"github.com/mgechev/revive/lint"
"github.com/mgechev/revive/rule"
)
func TestUnhandledError(t *testing.T) {
testRule(t, "unhandled-error", &rule.UnhandledErrorRule{})
}
func TestUnhandledErrorWithIgnoreList(t *testing.T) {
args := []any{
`unhandledError1`,
`fmt\.Print`,
`os\.(Create|WriteFile|Chmod)`,
`net\..*`,
`bytes\.Buffer\.Write`,
`fixtures\.unhandledErrorStruct2\.reterr`,
}
testRule(t, "unhandled-error-w-ignorelist", &rule.UnhandledErrorRule{}, &lint.RuleConfig{Arguments: args})
}