-
Notifications
You must be signed in to change notification settings - Fork 0
Testing Pyramid
Devrath edited this page May 16, 2021
·
4 revisions

- 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.
-
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.