Member-only story
Day 29 | #100DaysOfCode
Testing in Android for Beginners
Exploring UI Testing in Android
4 min readOct 16, 2019
If you open the Android Project view there always have been 3 packages like this. We add all our code in the first package. Ever wondered what other two are for?
Alright so there are three types of tests
- Unit Tests
- Instrumentation Tests
- UI Tests
1. Unit Tests
Unit tests form the foundation of the pyramid and are the most basic yet important tests to check the smallest components like functions and classes.
Unit tests are the tests which run on your computer to test some part of your code. It…