1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-28 08:49:11 +02:00
revive/test/unexported_naming_test.go
2024-11-11 19:31:18 +01:00

12 lines
180 B
Go

package test
import (
"testing"
"github.com/mgechev/revive/rule"
)
func TestUnexportedNaming(t *testing.T) {
testRule(t, "unexported_naming", &rule.UnexportedNamingRule{})
}