mirror of
https://github.com/mgechev/revive.git
synced 2024-11-21 17:16:40 +02:00
23 lines
556 B
Go
23 lines
556 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mgechev/revive/lint"
|
|
"github.com/mgechev/revive/rule"
|
|
)
|
|
|
|
func TestCyclomaticDefault(t *testing.T) {
|
|
testRule(t, "cyclomatic_default", &rule.CyclomaticRule{}, &lint.RuleConfig{})
|
|
}
|
|
|
|
func TestCyclomatic(t *testing.T) {
|
|
testRule(t, "cyclomatic_default", &rule.CyclomaticRule{}, &lint.RuleConfig{})
|
|
testRule(t, "cyclomatic", &rule.CyclomaticRule{}, &lint.RuleConfig{
|
|
Arguments: []any{int64(1)},
|
|
})
|
|
testRule(t, "cyclomatic_2", &rule.CyclomaticRule{}, &lint.RuleConfig{
|
|
Arguments: []any{int64(3)},
|
|
})
|
|
}
|