一、关于Robolectric3.0
  文章中的所有代码在此:https://github.com/geniusmart/LoveUT,由于Robolectric3.0和3.1版本(包括后续3.x版本)差异不小,该工程中包含这两个版本对应的测试用例 Demo 。
  作为一个软件开发攻城狮,无论你多不屑多排斥单元测试,它都是一种非常好的开发方式,且不谈TDD,为自己写的代码负责,测试自己写的代码,在自己力所能及的范围内提高产品的质量,本是理所当然的事情。
  那么如何测试自己写的代码?点点界面,测测功能固然是一种方式,但是如果能留下一段一劳永逸的测试代码,让代码测试代码,岂不两全其美?所以,写好单元测试,爱惜自己的代码,爱惜颜值高的QA妹纸,爱惜有价值的产品(没价值的、政治性的、屁股决定脑袋的产品滚粗),人人有责!
  对于Android app来说,写起单元测试来瞻前顾后,一方面单元测试需要运行在模拟器上或者真机上,麻烦而且缓慢,另一方面,一些依赖Android SDK的对象(如Activity,TextView等)的测试非常头疼,Robolectric可以解决此类问题,它的设计思路便是通过实现一套JVM能运行的Android代码,从而做到脱离Android环境进行测试。本文对Robolectric3.0做了简单介绍,并列举了如何对Android的组件和常见功能进行测试的示例。
  二、环境搭建
  Gradle配置
  在build.gradle中配置如下依赖关系:
  testCompile "org.robolectric:robolectric:3.0"
  通过注解配置TestRunner
  @RunWith(RobolectricGradleTestRunner.class)
  @Config(constants = BuildConfig.class)
  public class SampleActivityTest {
  }
  Android Studio的配置
  在Build Variants面板中,将Test Artifact切换成Unit Tests模式(注:新版本的as已经不需要做这项配置),如下图:

  配置Test Artifact
  working directory 设置为$MODULE_DIR$
  如果在测试过程遇见如下问题,解决的方式是设置working directory的值:
  java.io.FileNotFoundException: buildintermediatesundlesdebugAndroidManifest.xml (系统找不到指定的路径。)
  设置方法如下图所示:

  Edit Configurations

Working directory的配置

  更多环境配置可以参考官方网站。
  三、Activity的测试
  1、创建Activity实例
  @Test
  public void testActivity() {
  SampleActivity sampleActivity = Robolectric.setupActivity(SampleActivity.class);
  assertNotNull(sampleActivity);
  assertEquals(sampleActivity.getTitle(), "SimpleActivity");
  }
  2、生命周期
  @Test
  public void testLifecycle() {
  ActivityController<SampleActivity> activityController = Robolectric.buildActivity(SampleActivity.class).create().start();
  Activity activity = activityController.get();
  TextView textview = (TextView) activity.findViewById(R.id.tv_lifecycle_value);
  assertEquals("onCreate",textview.getText().toString());
  activityController.resume();
  assertEquals("onResume", textview.getText().toString());
  activityController.destroy();
  assertEquals("onDestroy", textview.getText().toString());
  }
  3、跳转
  @Test
  public void testStartActivity() {
  //按钮点击后跳转到下一个Activity
  forwardBtn.performClick();
  Intent expectedIntent = new Intent(sampleActivity, LoginActivity.class);
  Intent actualIntent = ShadowApplication.getInstance().getNextStartedActivity();
  assertEquals(expectedIntent, actualIntent);
  }
  注:Robolectric 3.1 之后,不建议用  Intent.equals() 的方式来比对两个 Intent ,因此以上代码将无法正常执行。目前建议用类似代码来断言:
  assertEquals(expectedIntent.getComponent(), actualIntent.getComponent());
  当然,Intent 有很多属性,如果需要分别断言的话比较麻烦,因此可以用一些第三方库,比如 assertj-android 的工具类 IntentAssert。
  4、UI组件状态
  @Test
  public void testViewState(){
  CheckBox checkBox = (CheckBox) sampleActivity.findViewById(R.id.checkbox);
  Button inverseBtn = (Button) sampleActivity.findViewById(R.id.btn_inverse);
  assertTrue(inverseBtn.isEnabled());
  checkBox.setChecked(true);
  //点击按钮,CheckBox反选
  inverseBtn.performClick();
  assertTrue(!checkBox.isChecked());
  inverseBtn.performClick();
  assertTrue(checkBox.isChecked());
  }
  5、Dialog
  @Test
  public void testDialog(){
  //点击按钮,出现对话框
  dialogBtn.performClick();
  AlertDialog latestAlertDialog = ShadowAlertDialog.getLatestAlertDialog();
  assertNotNull(latestAlertDialog);
  }
  6、Toast
  @Test
  public void testToast(){
  //点击按钮,出现吐司
  toastBtn.performClick();
  assertEquals(ShadowToast.getTextOfLatestToast(),"we love UT");
  }
  7、Fragment的测试
  如果使用support的Fragment,需添加以下依赖
  testCompile "org.robolectric:shadows-support-v4:3.0"
  shadow-support包提供了将Fragment主动添加到Activity中的方法:SupportFragmentTestUtil.startFragment(),简易的测试代码如下
  @Test
  public void testFragment(){
  SampleFragment sampleFragment = new SampleFragment();
  //此api可以主动添加Fragment到Activity中,因此会触发Fragment的onCreateView()
  SupportFragmentTestUtil.startFragment(sampleFragment);
  assertNotNull(sampleFragment.getView());
  }
  8、访问资源文件
  @Test
  public void testResources() {
  Application application = RuntimeEnvironment.application;
  String appName = application.getString(R.string.app_name);
  String activityTitle = application.getString(R.string.title_activity_simple);
  assertEquals("LoveUT", appName);
  assertEquals("SimpleActivity",activityTitle);
  }