1
0
mirror of https://github.com/mgechev/revive.git synced 2025-05-19 22:03:20 +02:00
revive/test/unnecessary_stmt_test.go

12 lines
177 B
Go
Raw Normal View History

package test
import (
"testing"
"github.com/mgechev/revive/rule"
)
func TestUnnecessaryStmt(t *testing.T) {
testRule(t, "unnecessary_stmt", &rule.UnnecessaryStmtRule{})
}