Inspectopedia
 
2024.3

Malformed test function name

Warning
Code Style
New
Last modified: 03 December 2024

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) {}