Question: Which file names will the `go test` command recognize as test files?

  1. any that starts with `test`
  2. any files that include the word `test`
  3. only files in the root directory that end in `_test.go`
  4. any that ends in `_test.go`

Answer: The correct answer of the above question is Option D:any that ends in `_test.go`