GoConvey is a 2-pronged testing tool for the Go programming language. The first part is a package you import in your test code that allows the programmer to write tests in a BDD-like style. The second part is a web server you can run which executes your tests as you make changes to code and displays the results in a web browser.
GoConvey is a 2-pronged testing tool for the Go programming language. The first part is a package you import in your test code that allows the programmer to write tests in a BDD-like style. The second part is a web server you can run which executes your tests (using the standard go test command) as you make changes to code and displays the results in a web browser (with easy access to code coverage provided by the go cover tool). Usage of either part is not dependent on the other. Happy testing!