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

19 lines
428 B
Go
Raw Normal View History

2019-12-14 09:27:06 +02:00
package test
import (
"testing"
"github.com/mgechev/revive/lint"
"github.com/mgechev/revive/rule"
)
func TestCognitiveComplexityDefault(t *testing.T) {
testRule(t, "cognitive_complexity_default", &rule.CognitiveComplexityRule{}, &lint.RuleConfig{})
}
2019-12-14 09:27:06 +02:00
func TestCognitiveComplexity(t *testing.T) {
testRule(t, "cognitive_complexity", &rule.CognitiveComplexityRule{}, &lint.RuleConfig{
Arguments: []any{int64(0)},
2019-12-14 09:27:06 +02:00
})
}