mirror of
https://github.com/mgechev/revive.git
synced 2024-11-24 08:32:22 +02:00
21 lines
469 B
Go
21 lines
469 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mgechev/revive/lint"
|
|
"github.com/mgechev/revive/rule"
|
|
)
|
|
|
|
func TestCommentsDensity(t *testing.T) {
|
|
testRule(t, "comments-density-1", &rule.CommentsDensityRule{}, &lint.RuleConfig{
|
|
Arguments: []any{int64(60)},
|
|
})
|
|
|
|
testRule(t, "comments-density-2", &rule.CommentsDensityRule{}, &lint.RuleConfig{
|
|
Arguments: []any{int64(90)},
|
|
})
|
|
|
|
testRule(t, "comments-density-3", &rule.CommentsDensityRule{}, &lint.RuleConfig{})
|
|
}
|