When I use golang, I can write:
go test ./...
which tells go to run all the tests found under the .
directory.
What is the name of the ./...
special path?
Also, is there support for that special path by other projects/tools or is it specific to golang?