2025-11-15 20:24:16 +02:00
|
|
|
package test_test
|
2025-08-04 06:58:14 +02:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
|
|
"github.com/mgechev/revive/rule"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestIdenticalIfElseIfConditions(t *testing.T) {
|
|
|
|
|
testRule(t, "identical_ifelseif_conditions", &rule.IdenticalIfElseIfConditionsRule{})
|
|
|
|
|
}
|