Book Image

Learning Android Application Development

By : Raimon Ràfols Montane, Laurence Dawson
Book Image

Learning Android Application Development

By: Raimon Ràfols Montane, Laurence Dawson

Overview of this book

The mobile app market is huge. But where do you start? And how you can deliver something that takes Google Play by storm? This guide is the perfect route into Android app development – while it’s easy for new apps to sink without a trace, we’ll give you the best chance of success with practical and actionable guidance that will unlock your creativity and help you put the principles of Android development into practice. From the fundamentals and getting your project started to publishing your app to a huge market of potential customers, follow this guide to become a confident, creative and reliable mobile developer. Get to grips with new components in Android 7 such as RecyclerView, and find out how to take advantage of automated testing, and, of course, much, much more. What are you waiting for? There’s never been a better time – or a better way – to get into Android app development.
Table of Contents (16 chapters)
Learning Android Application Development
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface

Chapter 8. Testing Your Application

OK! You have built your mobile application and you are ready to publish it to the store, but how do you know the application will work the way it was designed and will not crash? In addition to this, how do you know you did not break any functionality when you added that last-minute change to one of the screens? Even if you manually tested the change, there might be something related to your change you may have missed or forgotten to test.

In this chapter, we will see how to write automatic tests for your application, covering topics that range from testing your application logic to application UI and navigation. This does not mean everything will be automatically tested and there will be no need for any further manual and exploratory tests, but adding automatic tests as early as possible when developing software will help us identify and discover issues in the very early stages of our development. As documented multiple times, the cost of fixing software...