1
0
mirror of https://github.com/mgechev/revive.git synced 2025-11-23 22:04:49 +02:00
Files
revive/test/useless_fallthrough_test.go
2025-11-06 02:50:18 -08:00

12 lines
186 B
Go

package test
import (
"testing"
"github.com/mgechev/revive/rule"
)
func TestUselessFallthrough(t *testing.T) {
testRule(t, "useless_fallthrough", &rule.UselessFallthroughRule{})
}