github.com/songshiyun/revive@v1.1.5-0.20220323112655-f8433a19b3c5/test/unhandled-error_test.go (about)

     1  package test
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/songshiyun/revive/lint"
     7  	"github.com/songshiyun/revive/rule"
     8  )
     9  
    10  func TestUnhandledError(t *testing.T) {
    11  	testRule(t, "unhandled-error", &rule.UnhandledErrorRule{})
    12  }
    13  
    14  func TestUnhandledErrorWithBlacklist(t *testing.T) {
    15  	args := []interface{}{"os.Chdir", "unhandledError1"}
    16  
    17  	testRule(t, "unhandled-error-w-ignorelist", &rule.UnhandledErrorRule{}, &lint.RuleConfig{Arguments: args})
    18  }