go test
Tests Go packages (files have to end with _test.go
).
=> More information.
- Test the package found in the current directory:
go test
- [v]erbosely test the package in the current directory:
go test -v
- Test the packages in the current directory and all subdirectories (note the
...
):
go test -v ./...
- Test the package in the current directory and run all benchmarks:
go test -v -bench .
- Test the package in the current directory and run all benchmarks for 50 seconds:
go test -v -bench . -benchtime {50s}
- Test the package with coverage analysis:
go test -cover
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).
=> CC-BY
Proxy Information
- Original URL
- gemini://freeshell.de/tldr/go-test.gmi
- Status Code
- Success (20)
- Meta
text/gemini;lang=en-GB
- Capsule Response Time
- 104.334693 milliseconds
- Gemini-to-HTML Time
- 0.445083 milliseconds
This content has been proxied by September (ba2dc).