1
0
mirror of https://github.com/mgechev/revive.git synced 2025-02-19 19:10:11 +02:00
revive/test/import_shadowing_test.go

12 lines
177 B
Go
Raw Normal View History

package test
import (
"testing"
"github.com/mgechev/revive/rule"
)
func TestImportShadowing(t *testing.T) {
testRule(t, "import_shadowing", &rule.ImportShadowingRule{})
}