Please enable JavaScript.
Coggle requires JavaScript to display documents.
Test pyramids - Coggle Diagram
Test pyramids
Continuous delivery
a practice where you automatically ensure that your software can be released into production any time
use a build pipeline to automatically test your software and deploy it to your testing and production environments.
Automating everything — from build to tests, deployment and infrastructure — is your only way forward
-
Test Structure "Arrange, Act, Assert"
Inspiration from BDD . It's the "given", "when", "then"
-
-
-
-
If you want to keep pace you'll have to look into ways to deliver your software faster without sacrificing its quality.
visual metaphor telling you to think about different layers of testing. It also tells you how much testing to do on each layer.
Contract tests ensure that the provider and all consumers of an interface stick to the defined interface contract. With CDC tests consumers of an interface publish their requirements in the form of automated tests; the providers fetch and execute these tests continuously