2020-02-18 18:38:01 +01:00
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/mgechev/revive/rule"
|
|
|
|
)
|
|
|
|
|
|
|
|
// String-of-int rule.
|
|
|
|
func TestStringOfInt(t *testing.T) {
|
2024-11-11 13:39:10 +02:00
|
|
|
testRule(t, "string_of_int", &rule.StringOfIntRule{})
|
2020-02-18 18:38:01 +01:00
|
|
|
}
|