码迷,mamicode.com
首页 > 移动开发 > 详细

Android:使用单元测试

时间:2014-05-26 11:23:40      阅读:308      评论:0      收藏:0      [点我收藏+]

标签:android   style   c   class   blog   code   

一、加入配置项:

1、在Application项内,Activity项外加入“引用测试类库”代码:

<uses-library android:name="android.test.runner" />

2、在Application项同级加入“测试入口”代码:

<instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="com.juniux.junittest" android:label="Test My App" />
<!--android:label属性可忽略-->

二、编辑测试类:

注:该类需继承 AndroidTestCase 类,建议命名为:"要测试的类名"+Test;测试方法命名:Test+"要测试的方法名",且throws异常。

bubuko.com,布布扣
package com.juniux.test;
import junit.framework.Assert;
import com.juniux.services.PersonService;
import android.test.AndroidTestCase;
public class PersonServiceTest extends AndroidTestCase {
    public void TestSave() throws Exception {
        PersonService service = new PersonService();
        service.Save(null);
    }
    public void TestAdd() throws Exception
    {
            PersonService service = new PersonService();
            int result = service.Add(1, 2);            
            Assert.assertEquals(3, result);        
    }
}
bubuko.com,布布扣

三:启用测试

在Outline列表中右键点击要测试的方法,并选择 RunAs -> Android JUnit Test 启动测试。

Android:使用单元测试,布布扣,bubuko.com

Android:使用单元测试

标签:android   style   c   class   blog   code   

原文地址:http://www.cnblogs.com/cxmsky/p/3746977.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!