1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-24 08:32:22 +02:00
revive/test/unhandled-error_test.go

19 lines
427 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 TestUnhandledErrorWithBlacklist(t *testing.T) {
args := []interface{}{"os.Chdir", "unhandledError1"}
testRule(t, "unhandled-error-w-ignorelist", &rule.UnhandledErrorRule{}, &lint.RuleConfig{Arguments: args})
}