Member-only story

Day 29 | #100DaysOfCode

Testing in Android for Beginners

Exploring UI Testing in Android

Dhananjay Trivedi

--

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

  1. Unit Tests
  2. Instrumentation Tests
  3. 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…

--

--

No responses yet