in Service Discovery by (31.7k points)
What can we derive from Mike Cohn’s Test Pyramid?

1 Answer

0 votes
by (23.9k points)
Mike Cohn’s Test Pyramid describes the type of automated tests required for software development. The Test Pyramid is only a metaphor that implies a grouping of tests based on their granularity. This Pyramid tells which kind of tests should be applied to different levels of the pyramid.

Mike Cohn’s test pyramid consists of three layers that a test suite should consist:

Unit Testing

Service Testing

User Interface Testing.

Two points to be derived from Cohn’s pyramid is that:

Define tests with different granularity

The higher in the level you get, the fewer tests you should have.

Related questions

0 votes
asked Apr 11, 2022 in SAP S/4HANA Finance demos by rajeshsharma (23.9k points)
0 votes
asked Mar 18, 2020 in Selenium by Hodge (2.6k points)
+1 vote
asked Dec 14, 2022 in Agile by sharadyadav1986 (31.7k points)
...