Go Testing: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 10: Line 10:
=Overview=
=Overview=
Go comes with built-in frameworks for testing and profiling. The tests live in <code>*_test.go</code> files.
Go comes with built-in frameworks for testing and profiling. The tests live in <code>*_test.go</code> files.
Also see [[Go_Packages#External_Test_Packages|external test packages]].

Revision as of 23:58, 7 September 2023

External

Internal

TODO

To deplete, merge and delete this: Go Concepts - Testing

Overview

Go comes with built-in frameworks for testing and profiling. The tests live in *_test.go files.

Also see external test packages.