Quidest?

Go tests

· Lorenzo Drumond

Go provides the built-in testing package for tests.

Each test in Go is a function, with some special requirements:

When all this requirements are satisfied, you can run the tests from the terminal with: go test

References

#computer_science #programming #testing #golang