If your current working directory is the top level of your project, which command will run all its test packages?
go run --all
go test all
go test ./...
Relative patterns are also allowed, like "go test ./..." to test all subdirectories.
go test .