2025-11-15 20:24:16 +02:00
|
|
|
package test_test
|
2025-08-02 08:04:18 +02:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
|
|
"github.com/mgechev/revive/rule"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestIdenticalSwitchConditions(t *testing.T) {
|
|
|
|
|
testRule(t, "identical_switch_conditions", &rule.IdenticalSwitchConditionsRule{})
|
|
|
|
|
}
|