-
Notifications
You must be signed in to change notification settings - Fork 0
What is Espresso tool
Devrath edited this page May 17, 2021
·
5 revisions

- Testing is very essential in delivering high-quality software. We test both the
business logicandUIto build high-quality software. - Espresso is a great library for UI testing
- Espresso helps to write
automatedtest cases so that they can be run multiple times - When you are writing an android application, We can test the application manually by looking at the screen finding the
input fields,action buttonsbut it is a tedious job and we may miss corner cases in it. - Having automated tests ensures that everytime we make changes for the application on new changes, We can just run the automated test cases to validate that everything is running as expected.