background preloader

Android

Facebook Twitter

Marcus Westermark sur Twitter : "Good new for all #Android users. No need to reinstall your #HackingTeam #spyware after a factory reset. Activity Testing Tutorial. Android includes powerful tools for testing applications.

Activity Testing Tutorial

The tools extend JUnit with additional features, provide convenience classes for mock Android system objects, and use instrumentation to give you control over your main application while you are testing it. The entire Android testing environment is discussed in the document Testing Fundamentals. This tutorial demonstrates the Android testing tools by presenting a simple Android application and then leading you step-by-step through the creation of a test application for it. The test application demonstrates these key points: Testing Fundamentals. The Android testing framework, an integral part of the development environment, provides an architecture and powerful tools that help you test every aspect of your application at every level from unit to framework.

Testing Fundamentals

The testing framework has these key features: Android test suites are based on JUnit. You can use plain JUnit to test a class that doesn't call the Android API, or Android's JUnit extensions to test Android components. Developers.