Contract Testing
Contract testing verifies that two independently deployed services — typically a consumer and a provider in a microservices architecture — agree on the structure and behavior of the API that connects them, without requiring both to run together in a full integration test.
3 resources across 1 library
Glossary Terms(3)
Contract Testing
Contract testing verifies that two independently deployed services — typically a consumer and a provider in a microservices architecture — agree on the structu…
Test Pyramid
The test pyramid is a model for structuring an automated test suite that recommends having many fast, cheap unit tests at the base, fewer integration tests in…
Mocking Framework
A mocking framework is a testing library that creates fake, controllable substitutes for real dependencies — such as databases, network calls, or other service…