Question: Which file names will the `go test` command recognize as test files?
- any that starts with `test`
- any files that include the word `test`
- only files in the root directory that end in `_test.go`
- any that ends in `_test.go`
Answer: The correct answer of the above question is Option D:any that ends in `_test.go`