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