About 21,800 results
Open links in new tab
  1. Fundamentals of testing Android apps

    Aug 8, 2025 · You can manually test your app by navigating through it. You might use different devices and emulators, change the system language, and try to generate every user error or traverse every …

  2. Test apps on Android | Test your app on Android | Android Developers

    Feb 10, 2025 · Testing your app is an integral part of the app development process. By running tests against your app consistently, you can verify your app's correctness, functional behavior, and …

  3. Test your app | Android Studio | Android Developers

    Apr 12, 2023 · This page describes various tools that help you create, configure, and run your tests from Android Studio or the command line. If you want to learn more about the fundamentals of testing and …

  4. Test in Android Studio

    Jul 15, 2025 · Using Firebase Test Lab, you can simultaneously test your app on many popular Android devices and device configurations (different combinations of locale, orientation, screen size, and …

  5. Testing strategies | Test your app on Android | Android Developers

    Jul 15, 2025 · A good testing strategy lets you take advantage of automated testing to focus on an important benefit: developer productivity. Teams achieve higher levels of productivity when they use …

  6. What to test in Android

    Feb 10, 2025 · What you should test depends on factors such as the type of app, the development team, the amount of legacy code, and the architecture used. The following sections outline what a beginner …

  7. Robolectric strategies | Test your app on Android | Android Developers

    Feb 10, 2025 · Robolectric is an open-source framework maintained by Google that lets you run tests in a simulated Android environment inside a JVM, without the overhead and flakiness of an emulator. It …

  8. Automate UI tests | Test your app on Android | Android Developers

    Feb 10, 2025 · To run instrumented UI tests using Android Studio, you implement your test code in a separate Android test folder - src/androidTest/java. The Android Gradle Plugin builds a test app …

  9. Advanced test setup | Android Studio | Android Developers

    Apr 12, 2023 · Test in Android Studio and Test from the command line explain how to set up and run basic test configurations. However, when your app and its test requirements get more advanced, you …

  10. (Deprecated) Advanced Android in Kotlin 05.1: Testing Basics

    Dec 11, 2024 · Learn the basics of testing your Android Kotlin apps. In this codelab you’ll learn to run tests, write basic tests, work with AndroidX Test, as well as test ViewModel and LiveData.