Question: How do you tell `go test` to print out the tests it is running?

  1. `go test`
  2. `go test -x`
  3. `go test --verbose`
  4. `go test -v`

Answer: The correct answer of the above question is Option D:`go test -v`