Skip to content

Testing Pyramid

Devrath edited this page May 16, 2021 · 4 revisions

testing pyramid

How are these types of tests differ from each other

  • Not all the types of tests are easy to test 😟, especially the tests that depend on android framework.
  • So the idea is to separate the types of tests so that all these different types of tests can be individually be tested.

Types of tests from the testing pyramid

  • Unit Test-> This comprises the bulk of the testing, Here we test all the fundamental blocks.
  • Integration Test-> Here we test how the units interact with each other.
  • EndToEnd Test or UI Test-> Here there are few handful of tests that check how the whole system works.

Clone this wiki locally