Question: If your current working directory is the top level of your project, which command will run all its test packages?

  1. go test all
  2. go run --all
  3. go test .
  4. go test ./...

Answer: The correct answer of the above question is Option D:go test ./...