原文:android开发者培训文档之Testing
- Android提供了一个集成的测试框架,可以帮助你测试您的应用程序的各个方面
- The AndroidSDK and Testing Support Library提供了一些工具和API能让你在模拟器和真机中运行测试程序
- 可以在Android Studio或者命令行中构建和执行测试程序
阅读以下资源,你可以熟悉Android应用测试
测试的相关概念:熟悉APP测试的相关概念和学习一些Google提供的工具和库
-
测试概念
- 首先,得掌握 JUnit的基础知识:
- JUnit是一个简单的框架来写重复的测试。这是单元测试框架的xUnit架构的一个实例。
- JUnit的一个demo
- Android testing is based on JUnit. In general, a JUnit test is a method whose statements test a part of the application. You organize test methods into classes called test cases. You can further organize these classes into test suites.
- 首先,得掌握 JUnit的基础知识:
In JUnit, you build one or more test classes and use a test runner to execute them. In Android, you use Android Studio (or the Android Plugin for Gradle) to build one or more test source files into an Android test app.
开始测试