2025-11-15 20:24:16 +02:00
|
|
|
package test_test
|
2025-09-22 19:07:45 +02:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
|
|
"github.com/mgechev/revive/lint"
|
|
|
|
|
"github.com/mgechev/revive/rule"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestUnnecessaryIf(t *testing.T) {
|
|
|
|
|
testRule(t, "unnecessary_if", &rule.UnnecessaryIfRule{}, &lint.RuleConfig{})
|
|
|
|
|
}
|