Android单元测试资料整理

背景知识

什么是单元测试?

维基 https://zh.wikipedia.org/wiki/单元测试

知乎讨论 https://www.zhihu.com/question/28729261

我讨厌单元测试:滕振宇谈如何进行单元测试
http://www.infoq.com/cn/news/2012/02/I-Hate-Unit-Test

JUnit

官网教程 http://junit.org/junit4/

Android中的单元测试

官方Guide
https://developer.android.com/training/testing/start/index.html

AndroidStudio中建立测试
https://developer.android.com/studio/test/index.html

Android 本地单元测试
https://developer.android.com/training/testing/unit-testing/local-unit-tests.html

Android Instrumentation 测试

官方Guide
https://developer.android.com/training/testing/unit-testing/instrumented-unit-tests.html

UI自动化测试

Espresso 中文教程
https://github.com/hehonghui/android-tech-frontier/blob/master/issue-11/Android-Espresso测试框架介绍.md
http://wiki.jikexueyuan.com/project/android-weekly/issue-145/android-ui-auto-testing.html

官方Guide
https://google.github.io/android-testing-support-library/docs/espresso/intents/index.html

Q&A:

1.JUnit test和Instrumented test有什么区别?

你可能感兴趣的:(Android单元测试资料整理)