Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 610 Bytes

TESTING.md

File metadata and controls

16 lines (9 loc) · 610 Bytes

Corteza Server automated testing

Corteza server has three types of automated tests: unit, store and integration tests.

Unit tests

Unit tests follow common Golang testing patterns with _test.go files inside packages. Test files use the same package name as the non-test files to allow testing of unexported functions

Store tests

Store tests are intended to verify implementation of the persistence layer across multiple store backends.

Integration tests

integration tests are intended to verify correct exectution of API request to storage layer and back.