You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For non exported function like foo.bar, $func.TestName generates Testfoo_bar which go vet gives a warning about. Please change this to generate a name that is acceptable,. For example, an underscore could be inserted there, so the name becomes Test_foo. Thanks!
This snippet could be a possible fix:
//TestName returns a name of the testfunc (f*Func) TestName() string {
name:="Test"iff.IsMethod() {
recvType:=f.ReceiverType()
varident*ast.Identifstar, ok:=recvType.(*ast.StarExpr); ok {
ident=star.X.(*ast.Ident)
} else {
ident=recvType.(*ast.Ident)
}
if!ident.IsExported() {
name+="_"
}
name+=ident.String()
name+="_"
} elseif!f.Signature.Name.IsExported() {
name+="_"
}
returnname+f.Signature.Name.String()
}
The text was updated successfully, but these errors were encountered:
bjoerndemeyer
changed the title
$func.TestName generates names that go vet rejects for no-exported functions.
$func.TestName generates names that go vet rejects for non exported types.
Jun 2, 2022
For non exported function like foo.bar, $func.TestName generates Testfoo_bar which go vet gives a warning about. Please change this to generate a name that is acceptable,. For example, an underscore could be inserted there, so the name becomes Test_foo. Thanks!
This snippet could be a possible fix:
The text was updated successfully, but these errors were encountered: