package convert import ( "fmt" "testing" ) func TestConv_IntToStr(t *testing.T) { fmt.Println(conv.IntToStr(3455675656) + "okok") } func FuzzConv(f *testing.F) { f.Fuzz(func(t *testing.T, num int) { conv.IntToStr(num) }) }