Skip to content
This repository has been archived by the owner on Dec 7, 2020. It is now read-only.

Latest commit

 

History

History
9 lines (5 loc) · 578 Bytes

tests-development.md

File metadata and controls

9 lines (5 loc) · 578 Bytes

Writing tests

When writing tests please follow the same approach as we have taken in the other tests. There are many ways to test software and we have chosen ours, so please appreciate that.

The main tests are provided in files with the suffix _test.go and can be executed by running:

make test

When developing your test depending on the feature or enhancement you are testing you may find it best to add to an existing test, or to write a test from scratch. For the latter, we recommend finding another test that is close to what you need and use that as a basis.