如何运行android sdk sample中的单元测试

上一篇 / 下一篇  2009-12-02 14:36:39 / 个人分类:Android

我的栏目
  • 栏目:Android

(转自http://www.williamhua.com/2009/05/07/using-junit-in-android-app-development/稍作修改。我自己使用的是SDK1.6的例子,在SDK1.6上运行成功)51Testing软件测试网;|)v*_cw*M

 

&s ~GE[V0

'Tk:~aKY-Z&J0Android 1.5_r1release notes中专门提到了ADT0.9对于JUnit支持的改进,对于崇尚TDD测试驱动开发)的人来说这无疑是一个好消息,今天就抽点时间说说Android 1.5JUnit集成相关的要点吧。

51Testing软件测试网{C_J` x?

51Testing软件测试网 Jp!w[-BQ P*S W

配置完1.5SDKADT0.9,运行第一个1.5sample的时候我就看到Run as中多出了一个“Android JUnit Test的选项(以前是在Debug中)。51Testing软件测试网r2y3e/hJ B t
51Testing软件测试网k1y^&O4U'e,qE*G
可是文档里并没有提到如何在Android project中集成JUnit测试,好在我从Android Developers讨论组里找到了
TDD with Android 1.5这么一个帖子。

` Ii.G+`F TA0

bM R4{rQ,r0就先来看一看如何把Sample中的test case跑起来吧。
7E0`,B4oL{"sm0(多谢Zhaoblog上关于
Android 1.5 pre中运行APIDemo测试的总结51Testing软件测试网"n2Q j:f7^%S"N7p:A.j
1,新建一个Android项目,选择“create project from existing source”,并把路径指向
android-sdk-1.5/platforms/android-1.5/samples/ApiDemos51Testing软件测试网u3p]"^:Eh7_
2,再新建一个Android项目,依然通过“create project from existing source”的方式,这次把路径指向
android-sdk-1.5/platforms/android-1.5/samples/ApiDemos/tests
RDCUR0
这时候ADT会报错,因为它无法找到APIDemo项目。右键,选择Properties,在Java Build Path –> Projects中添加APIDemo项目即可。
,UU2n)h$kVst_-i&j03,以“Android Application”方式运行第一个项目(注意正确设置AVD,第一次运行程序时,选中项目单击右键àRun AsàOpen Run DialogàTarget选中所用的AVD),APIDemo将被安装到模拟器。51Testing软件测试网 [C8`0^'^?yi }
4,以“Android Application”方式运行第二个项目(注意正确设置AVD,第一次运行程序时,选中项目单击右键àRun AsàOpen Run DialogàTarget选中所用的AVD),APIDemo Test将被安装到模拟器。51Testing软件测试网&g|`Ks)d8I#l&F
5,现在,我们可以通过Dev Tools中的Instrumentation来执行APIDemo Test了。找到Dev toolsàInstrumentation”中的”Tests for API Demos.”,点击即可开始测试。
5n XZAuhv Vn0
p*[7V7AF/S [0sQ0这时,通过LogCat即可看到测试结果。

-f(X&~LJ K051Testing软件测试网g K1WF8~s!q(Z0W3S

I/instrumentation( 773): INSTRUMENTATION_STATUS_CODE: 151Testing软件测试网hQ[j8D8Ob3y

51Testing软件测试网zq6u5_;XRY0x8F1~S

I/TestRunner( 780): finished: testAndroidTestCaseSetupProperly(com.example.andr

*GAhj,TZg;u0

"YWFv ?)p9W0oid.apis.view.Focus2AndroidTest)

n5K\e6[051Testing软件测试网(s {t~c j

I/TestRunner( 780): passed: testAndroidTestCaseSetupProperly(com.example.androi

6\g)XU y:DK/[0

GD o(a'c.A#X0d.apis.view.Focus2AndroidTest)51Testing软件测试网*D @Y.cZ8Ky

)^r;y Y R"@&u@0I/instrumentation( 773): INSTRUMENTATION_STATUS_RESULT: stream=.

2r&?$jl$b/qm1f0

5\1Y5C@}!n8V s[0I/instrumentation( 773): INSTRUMENTATION_STATUS_RESULT: test=testAndroidTestCas51Testing软件测试网`|!s#g2@3}#M

51Testing软件测试网.?i}h5{&uQY

eSetupProperly

0p&]6a$h-W ~){ m O&d0

"ck5|7N'yy%G`0I/instrumentation( 773): INSTRUMENTATION_STATUS_RESULT: class=com.example.andro

W ?X XQNc0

.}h0?e$A1Nj8vx1X0id.apis.view.Focus2AndroidTest

0s3}Q0A$O$u$b0

;EK)f:gF@-m0I/instrumentation( 773): INSTRUMENTATION_STATUS_RESULT: current=2251Testing软件测试网r!Nabc

51Testing软件测试网 Llz1V-r d}3z.H

I/instrumentation( 773): INSTRUMENTATION_STATUS_RESULT: numtests=22

tA'H7jE8A5}Lc.s0

cVf:qT0I/instrumentation( 773): INSTRUMENTATION_STATUS_RESULT: id=InstrumentationTestR51Testing软件测试网\K bm#R2~;C`

51Testing软件测试网R~;H"g7PJR

unner

0m7n nPm rz }?051Testing软件测试网Yoo/_ z }1@

I/instrumentation( 773): INSTRUMENTATION_STATUS_CODE: 051Testing软件测试网`7Kk'A5R_%E%\

51Testing软件测试网^M'E'a s;OJRw;x

I/instrumentation( 773): INSTRUMENTATION_RESULT: stream=51Testing软件测试网'P6g%Cw~6H+LBZbt

xr^nW2y!J)Eu bn0I/instrumentation( 773): Test results for InstrumentationTestRunner=...........51Testing软件测试网!u2E } c+X:Em'e

51Testing软件测试网%~eyumDF5oW

...........

/}|1j(CR051Testing软件测试网}^#S:TM,g+x

I/instrumentation( 773): Time: 12.21251Testing软件测试网y,||6q/X

51Testing软件测试网 z p$t#e sb0c'F

I/instrumentation( 773):

2rA5\^$})y$B1}051Testing软件测试网9{I$r m&U.]4d7g

I/instrumentation( 773): OK (22 tests)51Testing软件测试网EI;e:N@2l*u;h%lq3{-K

51Testing软件测试网 N,O n$iDNVy1C

 51Testing软件测试网1bdvq']-@W

51Testing软件测试网#h2f#~'wW^p?;Z:y

除了通过Dev Tools来执行单元测试,我们还有另外两种方法:
'HgP:Af01、通过ADT,在eclipse中执行测试
/ZQb'aO EG;T-~0eclipse中选中test项目,直接Run As “Android JUnit Test”既可以,测试结果会以图形化的方式返回。

51Testing软件测试网0c6},R{'h$H@

%k0F&fv PBs1D02、通过sdb shell命令执行测试
&q4O/C'|&s#s+b \0在命令行中执行adb shell am instrument -w com.example.android.apis.tests/android.test.InstrumentationTestRunner命令51Testing软件测试网)P-DG"JWT-QT

5T x9h9c9Y3X:f0其中,com.example.android.apis.testsAPIDemo Test所在的package

}`-o`!yUa&['q051Testing软件测试网T+mY7\t GFW

那么,我们如何创建自己的test项目呢?
y]+];bi:~,LL0大致的步骤如下:
yKr7Jc G:\(c01、新建一个普通的Android项目,比如项目名为FooPackage
com.foo.bar
t+_{!? \V/w ]02
、新建一个Test项目,注意把Package填成com.foo.bar.tests,项目名任意,比如FooTestApplication name任意
$KujN4RG03、在FooTest项目的Build Path中添加Foo项目
s n7cZM/m04、参照APIDemo Test项目的manifext.xml来修改FooTest项目的
manifest.xml
2[5hn$Nj R8m05
、编写TestCase(至于测试代码的编写,还在学习中)
51Testing软件测试网&q.A N9F T&v!f

tlK \P t Iw0 

Up9U(Z+ib0

o,d OQ D0以前还有一个早期的介绍该操作的文档,现在可以不用这么麻烦了。 :)51Testing软件测试网1{'w5?"n/o1`.f%u#G&L

(http://groups.google.com/group/android-beginners/browse_thread/thread/92cae3fad38643a4)51Testing软件测试网L"A:q.}_1dT?

I will tell you more simple way. To execute the test cases of sample application provided by google please follow the following steps.
 
1. Open Eclipse and move to your desired workspace.
2. Create new Android Project and select Create Project from existing source.
3. Browse to any sample project for example Snake
4. Build and execute the application to check whether it is properly
installed.
5. In Project Explorer Drag the file SnakeTest.java to source folder.
6. Open AndroidManifest.xml which resides inside the folder test.
7. Copy following lines
 
<instrumentation android:name="android.test.InstrumentationTestRunner"
     android:targetPackage="com.example.android.snake"
     android:label="Snake sample tests">
</instrumentation>
8. Paste these lines to the file AndroidManifest.xml which resides in the application.
9. Add following line in the AndroidManifest
  <uses-library android:name="android.test.runner" />
10. Now save and Run the configuration.
11. Now close the application on emulator.
12. Open Dev Tools
13. Go to Instrumentation
14. Select Snake Sample Tests.
15. The test cases will execute. Check the Logs for the result.
16. You can also execute the following commands in the command prompt
adb shell am instrument –w com.example.android.snake/android.test.InstrumentationTestRunner

TAG: Android JUnit Junit

 

评分:0

我来说两句

Open Toolbar