mirror of
https://github.com/mgechev/revive.git
synced 2024-11-21 17:16:40 +02:00
23 lines
496 B
Go
23 lines
496 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mgechev/revive/lint"
|
|
"github.com/mgechev/revive/rule"
|
|
)
|
|
|
|
func TestUnusedParam(t *testing.T) {
|
|
testRule(t, "unused_param", &rule.UnusedParamRule{})
|
|
testRule(t, "unused_param_custom_regex", &rule.UnusedParamRule{}, &lint.RuleConfig{Arguments: []any{
|
|
map[string]any{"allowRegex": "^xxx"},
|
|
}})
|
|
}
|
|
|
|
func BenchmarkUnusedParam(b *testing.B) {
|
|
var t *testing.T
|
|
for i := 0; i <= b.N; i++ {
|
|
testRule(t, "unused_param", &rule.UnusedParamRule{})
|
|
}
|
|
}
|