Overview of Testing in Android
Learn about the fundamentals of testing Android apps.
We'll cover the following...
Introduction
Testing is integral to software development, and Android app development is no different. Depending on the size and complexity of the application, we might choose to use automated testing or perform manual testing. Manual tests work well if our app contains just a few simple flows. As the complexity of the application increases, we can easily miss edge cases and introduce bugs. Every time a new version of the app is released, we need to retest the existing flows for regression.
Manual testing doesn’t scale well. We can use tools to set up ...