在Android Studio进行“简单配置”单元测试
作者:3H 发布时间:[ 2016/7/21 14:11:41 ] 推荐标签:Android Studio 单元测试
起因
1、在Android studio 刚出。本人想弄单元测试,可惜当时Android studio不知道抽什么风(准确来说,应该是我不会弄而已)。无法执行到相应的代码。
后来突然自己又抽风。又想去弄一下Android junit。
2、本文基于做过Eclipse开发使用过Android junit,如果Eclipse的Android Junit没有使用过,我没有说过吧!
准备环境,配置
1、官网Demo地址:https://github.com/googlesamples/android-testing-templates.git
文档是:https://sites.google.com/a/android.com/tools/tech-docs/unit-testing-support
2、环境
· 根据demo中
· 单纯想运行java的单元测试引入
// Dependencies for local unit tests
testCompile 'junit:junit:' + rootProject.ext.junitVersion
testCompile 'org.mockito:mockito-all:' + rootProject.ext.mockitoVersion
testCompile 'org.hamcrest:hamcrest-all:' + rootProject.ext.hamcrestVersion
· 想运行Android的Junit得引入
// Android Testing Support Library's runner and rules
androidTestCompile 'com.android.support.test:runner:' + rootProject.ext.runnerVersion
androidTestCompile 'com.android.support.test:rules:' + rootProject.ext.rulesVersion
· 后在 defaultConfig 节点添加
defaultConfig {
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
}
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11