Book Image

Mastering Android Wear Application Development

By : Siddique Hameed, Javeed Chida
Book Image

Mastering Android Wear Application Development

By: Siddique Hameed, Javeed Chida

Overview of this book

Wearable technology is the future of mobile devices. It looks set to be a breakthrough technology, just like the iPad was before it. With the Apple Watch being widely regarded as a success, all eyes are now on Google to provide a similar device for its users. Keep your skills ahead of the competition and be one of the first to fully understand this powerful new trend. This book will give you a very solid understanding of the philosophy, thought process, development details, and methodologies involved in building well-designed, robust Android Wear applications. We cover the advantages and disadvantages of the wearable computing paradigm and provide a good foundational knowledge for you to build practical, real-world wearable apps. You will learn about the various tools, platforms, libraries, SDKs, and technology needed to build Android Wear apps. By the end of the book, you will be an expert in building Android wearable apps.
Table of Contents (18 chapters)
Mastering Android Wear Application Development
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface

Testing


It does not take too long for any programmer to learn the hard and valuable lesson that testing code is as important as coding itself. Ignore that lesson and a QA team worth its salt will be sure to bring you to your knees. Testing all on its own is a topic that deserves a lot of attention. There are countless resources, including books, out there that will sell you on a wide array of testing methodologies and philosophies. Test-driven Development (TDD) is worth researching if you are new to testing.

However, all that is out of the scope of this book. In this chapter, we are more concerned about the testing tooling provided by the Android platform geared toward Wear development, as well as the test APIs that are at your disposal. Let's take a closer look at that in the sections that follow.

The need for testing

The single most compelling reason to test code, in general, is to catch regressions as early as possible in the application development life cycle. With every code change that...