Setup Testing for Golang modules

With assay-it you can embed quality checks of HTTP(S) endpoints into Golang modules.

Create new Golang module

mkdir myapp && cd myapp
go mod init

Initialize assay-it config

assay-it init
go mod tidy

It creates

  • .assay-it.json config files
  • suites/suite.go example testing suites

Run testing

assay-it test

The example of usage assay-it utility with Golang model is shown by the blueprint.

See Example