2021-03-21 00:45:30 +02:00
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/mgechev/revive/lint"
|
|
|
|
"github.com/mgechev/revive/rule"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestFuncLengthLimitsStatements(t *testing.T) {
|
|
|
|
testRule(t, "function-length1", &rule.FunctionLength{}, &lint.RuleConfig{
|
2023-09-24 08:44:02 +02:00
|
|
|
Arguments: []any{int64(2), int64(100)},
|
2021-03-21 00:45:30 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFuncLengthLimitsLines(t *testing.T) {
|
|
|
|
testRule(t, "function-length2", &rule.FunctionLength{}, &lint.RuleConfig{
|
2023-09-24 08:44:02 +02:00
|
|
|
Arguments: []any{int64(100), int64(5)},
|
2021-03-21 00:45:30 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFuncLengthLimitsDeactivated(t *testing.T) {
|
|
|
|
testRule(t, "function-length3", &rule.FunctionLength{}, &lint.RuleConfig{
|
2023-09-24 08:44:02 +02:00
|
|
|
Arguments: []any{int64(0), int64(0)},
|
2021-03-21 00:45:30 +02:00
|
|
|
})
|
|
|
|
}
|