• Android:使用单元测试


    一、加入配置项:

    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异常。

    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);        
        }
    }

    三:启用测试

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

  • 相关阅读:
    ARM处理器
    进程和线程通俗理解
    const与指针
    字符提取命令
    ThinkPHP之视图模版的使用
    ThinkPHP之MVC与URL访问
    ThinkPHP之项目搭建
    android之文件存储和读取
    cryptdb中wrapper.lua的分析
    cryptDB安装分析
  • 原文地址:https://www.cnblogs.com/cxmsky/p/3746977.html
Copyright © 2020-2023  润新知