Integration Testing packages
Showing projects tagged as Go, Golang, and Integration Testing
-
Testcontainers-go
8.8 9.6 GoTestcontainers for Go is a Go package that makes it simple to create and clean up container-based dependencies for automated integration/smoke tests. The clean, easy-to-use API enables developers to programmatically define containers that should be run as part of a test and clean up those resources when the test is done. -
Example of testing Go code with Postgres
1.6 7.2 GoThe example suggests a solution to the problem of cleaning the database after running tests and the problem of running tests in parallel. It also shows how to organize integration testing of Go code with Postgres.