Inspectopedia Help

Malformed test function name

Reports malformed names of tests, benchmarks, and examples.

According to Package testing at go.dev, names must follow a special convention in order to make the go tool process them correctly.

Example:

func Testfoo(*testing.T) {} // the 'go' tool will not run this test

After the Rename to quick-fix is applied:

func TestFoo(*testing.T) {}

Inspection Details

Available in:

GoLand 2023.3

Plugin:

Go, 233.SNAPSHOT

Last modified: 13 July 2023