1
0
mirror of https://github.com/mgechev/revive.git synced 2025-04-02 22:05:32 +02:00
revive/test/max_control_nesting_test.go

15 lines
270 B
Go
Raw Normal View History

2024-01-28 12:22:41 +01:00
package test
import (
"testing"
"github.com/mgechev/revive/lint"
"github.com/mgechev/revive/rule"
)
func TestMaxControlNesting(t *testing.T) {
testRule(t, "max_control_nesting", &rule.MaxControlNestingRule{}, &lint.RuleConfig{
2024-01-28 12:22:41 +01:00
Arguments: []any{int64(2)}},
)
}