Android Test Driven Development

后端 未结 6 1899
轻奢々
轻奢々 2021-01-29 22:32

I have considerable experience in making Android applications. For my new project, we have decided to do Test Driven Development (TDD). I have been getting my hands wet on Robot

6条回答
  •  我在风中等你
    2021-01-29 23:14

    Android Testing Support Library provides an extensive framework for testing Android apps. This library provides a set of APIs that allow you to quickly build and run test code for your apps, including JUnit 4 and functional user interface (UI) tests. You can run tests created using these APIs from the Android Studio IDE or from the command line.

    Read more about:

    • Espresso
    • AndroidJUnitRunner
    • JUnit4 Rules
    • UI Automator

    Thank you :)

提交回复
热议问题