mirror of
https://github.com/mgechev/revive.git
synced 2025-01-20 03:29:25 +02:00
39 lines
1.2 KiB
Go
39 lines
1.2 KiB
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mgechev/revive/lint"
|
|
"github.com/mgechev/revive/rule"
|
|
)
|
|
|
|
func TestExportedWithDisableStutteringCheck(t *testing.T) {
|
|
args := []any{"disableStutteringCheck"}
|
|
|
|
testRule(t, "exported_issue_555", &rule.ExportedRule{}, &lint.RuleConfig{Arguments: args})
|
|
}
|
|
|
|
func TestExportedWithChecksOnMethodsOfPrivateTypes(t *testing.T) {
|
|
args := []any{"checkPrivateReceivers"}
|
|
|
|
testRule(t, "exported_issue_552", &rule.ExportedRule{}, &lint.RuleConfig{Arguments: args})
|
|
}
|
|
|
|
func TestExportedReplacingStuttersByRepetitive(t *testing.T) {
|
|
args := []any{"sayRepetitiveInsteadOfStutters"}
|
|
|
|
testRule(t, "exported_issue_519", &rule.ExportedRule{}, &lint.RuleConfig{Arguments: args})
|
|
}
|
|
|
|
func TestCheckPublicInterfaceOption(t *testing.T) {
|
|
args := []any{"checkPublicInterface"}
|
|
|
|
testRule(t, "exported_issue_1002", &rule.ExportedRule{}, &lint.RuleConfig{Arguments: args})
|
|
}
|
|
|
|
func TestCheckDisablingOnDeclarationTypes(t *testing.T) {
|
|
args := []any{"disableChecksOnConstants", "disableChecksOnFunctions", "disableChecksOnMethods", "disableChecksOnTypes", "disableChecksOnVariables"}
|
|
|
|
testRule(t, "exported_issue_1045", &rule.ExportedRule{}, &lint.RuleConfig{Arguments: args})
|
|
}
|