android基础知识12:android自动化测试06—Instrumentation 05 InstrumentationTestRunner
转载处:http://blog.csdn.net/xianming01/article/details/7893553
在学习Android、JUnit的过程中,随着学习的深入,发现相关的内容越来越多,将这些类按照继承关系整理如下:
android.test.suitebuilder
包的名称似乎就在告诉我们这个包的作用:suite产生器,其包结构如下:
从这个图上似乎没有看到我们想要的,下面我们再仔细看下TestSuiteBuilder这个类:
通过上面的关键字:Exclude(排除; 不包括在内),Include(包括, 包含),the given packages and all sub-package(给定的包和所有子包),这些都让我们感觉到TestSuiteBuilder类的主要作用是:将包添加或排除在当前的单元测试中。大家是不想起来了如何启动单元测试篇幅中介绍的启动命令:
[plain]view plaincopy adbshellaminstrument-wcom.xmobileapp.hello/android.test.InstrumentationTestRunner 这条命令的实际作用是是将com.xmobileapp.hello添加到当前单元测试中,在这里我们在列举一些这样的命令,如下:
运行某个TestCase:
[plain]view plaincopy adbshellaminstrument-w-eclasscom.android.foo.FooTestcom.android.foo/android.test.InstrumentationTestRunner 运行一个TestCase中的某个功能:
[plain]view plaincopy adbshellaminstrument-w-eclasscom.android.foo.FooTest#testFoocom.android.foo/android.test.InstrumentationTestRunner 同时测试多个TestCase:
[plain]view plaincopy adbshellaminstrument-w-eclasscom.android.foo.FooTest,com.android.foo.TooTestcom.android.foo/android.test.InstrumentationTestRunner 看了这些命令,再结合TestSuiteBuilder的函数,我想大家就明白了一个重要的问题:在AndroidManifest.XML文件Instrumentation的属性(如下图所示)中为什么没有任何与TestSuite相关的说明?
单元测试的配置已经取代了TestCase的管理,所以TestSuite的功能就弱化了很多,TestSuiteBuilder就是在我们提供当前测试的测试范围的配置,例如:是否将某个TestCase添加到当前测试中。TestSuiteBuilder类的函数builder就根据的我们的配置产生TestSuite。看到这里我们的的疑惑就少了很多,下面我们继续介绍InstrumentationTestRunner类。
InstrumentationTestRunner 类结构,如下图所示:
主要函数接口列举如下:
InstrumentationTestRunner典型的使用过程:
编写测试用例,测试用例基本上是从以下类继承的;
l ActivityInstrumentationTestCase
ActivityUnitTestCase
AndroidTestCase
ApplicationTestCase
InstrumentationTestCase
ProviderTestCase
ServiceTestCaseSingleLaunchActivityTestCase
在AndroidManifest.xml中定义一个instrumentation并targetPackage属性中说明被测试的包名称;运行instrumentation使用“adb shell am instrument -w”,运行所有测试(除性能测试);运行instrumentation使用“adb shell am instrument -w”,并添加额外的命令“-e func true’”来运行所有的功能测试。这谢测试继承至测InstrumentationTestCase;运行instrumentation使用“adb shell am instrument -w”,并添加额外的命令“-e unit true”来运行所有的单元测试。这些测试那些非InstrumentationTestCase 从继承的类;运行instrumentation使用“adb shell am instrument -w”,并添加额外的命令“-e class” 来运行某个单独的TestCase。
看了上面的命令,我们在看下ApiDemos\test\…\AllTests.java中的一些注释,如下:
大家就应该明白这些注释说的是什么意思了吧,这篇文章的目的也就达到了。
下面介绍一个简要的例子:
[java]view plaincopy publicclassApiDemosRunnerextendsInstrumentationTestRunner { @Override publicTestSuitegetAllTests() { Log.i(“ApiDemosRunner”,“ApiDemosRunner::getAllTests()”); returnnewTestSuiteBuilder(ApiDemosRunner.class) .includeAllPackagesUnderHere() .build(); } @Override publicClassLoadergetLoader() { returnApiDemosRunner.class.getClassLoader(); } }
看了这段代码,大家就明白TestSuiteBuilder的主要作用了,这里我们需要说明的:万变不离其中,整个测试的核心还是TestSuite,只不过Android SDK在此基础上增加了TestSuiteBuilder,是我们对TestCase的管理更加方便。InstrumentationTestRunner类相对比较简单,看了上面的例子,以后按照这种方法使用就可以了,这里就不在详细说明。
总结说明
Android SDK在单元测试方面的封装比较完美,我们几乎不需要写太多的代码就可以完成单元测试。
参考资料:
android.test.InstrumentationTestRunner解析
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。