How do QA's benefit from Test Pyramid
I would like to talk about my experience with Test Pyramid. A quick overview of test pyramid. Test Pyramid talks about categorizing the automated tests based on the layer of application they are written in and the volume of the tests in each layers. Example: Unit tests: Written for each of the class in the application Integration tests: Written for areas of application which talk to an external system like Databases E2E tests: Typically UI tests written when the entire system is up and running. Based on above example Test Pyramid asks teams to have more tests at Unit level lesser at Integration and minimal at E2E level. You can read more about Test Pyramid here: https://martinfowler.com/articles/practical-test-pyramid.htm l. When you first hear about test pyramid for the first time the question you might have is how does it really help? I had a similar question. I’ll share my experience in one of my project. The project was about building a website which would consume data from...