上一篇文章:
Android自动化测试--Local Unit Tests使用
相比上一篇文章所讲的Local Unit Tests,本文所讲的自动化测试Instrumented Unit Tests最显著的特点就是,可以直接测试Android SDK的API。
使用
首先我们在Android Studio中新建一个项目,取名为 InstrumentedUnitTests。同时删除自动生成的一些文件,最终目录结构如下:
接下来我们看看如何一步一步的使用Instrumented Unit Tests,首先在app目录的 build.gradle 文件中添加下面的引入,根据提示点击Sync Now。
dependencies {
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
}
android {
defaultConfig {
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
}
接下来我们在main文件夹中新建一个config类,模拟平时编写的待测试方法。
增加几个方法模拟通过SharedPreferences保存数据
package me.shihao.instrumentedunittests;
import android.content.Context;
import android.content.SharedPreferences;
/**
* Created by shihao on 2017/2/28.
*/
public class Config {
private static SharedPreferences sharedPreferences;
private static SharedPreferences.Editor editor;
private static Config instance;
private Config(Context context) {
sharedPreferences = context.getSharedPreferences("test", Context.MODE_PRIVATE);
editor = sharedPreferences.edit();
}
public static Config getInstance(Context context) {
if (instance == null) {
synchronized (Config.class) {
if (instance == null) {
instance = new Config(context.getApplicationContext());
}
}
}
return instance;
}
/**
* 模拟待测试方法,通过SharedPreferences保存userId
*
* @param userId
*/
public static void setUserId(String userId) {
editor.putString("userId", userId);
editor.commit();
}
/**
* 模拟待测试方法,通过SharedPreferences读取userId
*
* @return
*/
public static String getUserId() {
return sharedPreferences.getString("userId", "");
}
}
接下来我们编写测试类,在Config.class
中的单机鼠标右键 >> 选择Go To >> Test
选择Create New Test
Testing library选择JUnit4,同时在Generate test methods for中同时选中setUserId
和getUserId
。
选择.../app/src/androidTest/java/...
我们可以看到在刚刚选择的目录中已经帮我们生成好了测试类ConfigTest.class
。
接下来我们开始编写测试类,首先需要在类开始添加注解
@RunWith(AndroidJUnit4.class)
。通过前面的文章,可以知道相比Local Unit Tests多了访问设备信息和测试筛选,详细的可以查看前面的文章,接下来我们看详细的测试代码:
package me.shihao.instrumentedunittests;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Created by shihao on 2017/3/1.
*/
@RunWith(AndroidJUnit4.class)
public class ConfigTest {
private static String userId;
@BeforeClass
public static void setUp() {
userId = "1002123";
}
@Test
public void setUserId() throws Exception {
//模拟通过SharedPreferences保存userId
Context context = InstrumentationRegistry.getTargetContext();
Config.getInstance(context).setUserId(userId);
}
@Test
public void getUserId() throws Exception {
//读取保存的数据,对比是否保存成功
Context context = InstrumentationRegistry.getTargetContext();
String id = Config.getInstance(context).getUserId();
assertEquals(userId, id);
}
}
package me.shihao.instrumentedunittests;
import android.content.Context;
import android.content.SharedPreferences;
/**
* Created by shihao on 2017/2/28.
*/
public class Config {
private static SharedPreferences sharedPreferences;
private static SharedPreferences.Editor editor;
private static Config instance;
private Config(Context context) {
sharedPreferences = context.getSharedPreferences("test", Context.MODE_PRIVATE);
editor = sharedPreferences.edit();
}
public static Config getInstance(Context context) {
if (instance == null) {
synchronized (Config.class) {
if (instance == null) {
instance = new Config(context.getApplicationContext());
}
}
}
return instance;
}
/**
* 模拟待测试方法,通过SharedPreferences保存userId
*
* @param userId
*/
public static void setUserId(String userId) {
editor.putString("userId", userId);
editor.commit();
}
/**
* 模拟待测试方法,通过SharedPreferences读取userId
*
* @return
*/
public static String getUserId() {
return sharedPreferences.getString("userId", "");
}
}
接下来运行测试,看看效果如何
从结果可以看到,我们的测试都是通过了的。自此,前面两种测试的用法差不多就是这样,实际使用中我们可以看到,这两种都是没有与界面相交互的,接下来我们就看一看如何在测试中与界面相交互,欢迎查看下一篇文章: