mirror of
https://github.com/mgechev/revive.git
synced 2024-12-02 09:02:23 +02:00
15 lines
283 B
Go
15 lines
283 B
Go
|
package test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/mgechev/revive/lint"
|
||
|
"github.com/mgechev/revive/rule"
|
||
|
)
|
||
|
|
||
|
func TestCognitiveComplexity(t *testing.T) {
|
||
|
testRule(t, "cognitive-complexity", &rule.CognitiveComplexityRule{}, &lint.RuleConfig{
|
||
|
Arguments: []interface{}{int64(0)},
|
||
|
})
|
||
|
}
|