1
0
mirror of https://github.com/mgechev/revive.git synced 2025-02-01 13:07:44 +02:00
revive/test/cyclomatic_test.go
2024-11-11 19:31:18 +01:00

18 lines
352 B
Go

package test
import (
"testing"
"github.com/mgechev/revive/lint"
"github.com/mgechev/revive/rule"
)
func TestCyclomatic(t *testing.T) {
testRule(t, "cyclomatic", &rule.CyclomaticRule{}, &lint.RuleConfig{
Arguments: []any{int64(1)},
})
testRule(t, "cyclomatic_2", &rule.CyclomaticRule{}, &lint.RuleConfig{
Arguments: []any{int64(3)},
})
}