Exercises and notes referring to the study of the lecture notes presented in the discipline of Algorithms and Data Structures I, offered by the Department of Computer Engineering and Automation (UFRN).
-
To run all tests in the current directory and all its subdirectories:
go test -v ./...
*Note: Use the
-v
(verbose) flag for detailed execution information -
To run all tests in certain directories:
go test ./path/...
-
To run all tests on your $GOPATH:
go test ...