Go Tutorial Part 8 - Testing
Contents
- To make a test, create a new file ending in _test.go. eg
deck_test
- to run tests
go test
1 Simple Test
|
Errorf is used to log errors to console
use go test
to run all tests in the folder
Go does not do any cleanup after tests