Which file names will the go test command recognize as test files?
go test
any that starts with test
test
any files that include the word test
only files in the root directory that end in _test.go
_test.go
any that ends in _test.go