1
0
mirror of https://github.com/mgechev/revive.git synced 2025-07-15 01:04:40 +02:00
Files
revive/test/string_of_int_test.go

13 lines
189 B
Go
Raw Normal View History

package test
import (
"testing"
"github.com/mgechev/revive/rule"
)
// String-of-int rule.
func TestStringOfInt(t *testing.T) {
testRule(t, "string_of_int", &rule.StringOfIntRule{})
}