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

如何进行Android单元测试

时间:2014-07-13 09:35:39      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:android   style   color   strong   for   io   

如何进行Android单元测试

  

  1. Menifest.xml中加入:

    <application>中加入:

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

    <application>外面加入:

    <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />

    <instrumentation android:name="android.test.InstrumentationTestRunner"                     android:targetPackage="name.feisky.android.test"

    android:label="Test for my app"/>

  2. 编写单元测试代码:必须继承自AndroidTestCase

    package name.feisky.android.test;

      

    import android.test.AndroidTestCase;

    import junit.framework.Assert;

      

    public class MyTest extends AndroidTestCase  {

       private static final String Tag="MyTest";

      

        public void testSave() throws Throwable

        {

            int i=4+8;

            Assert.assertEquals(5,i);

        }

      

        public void testSomethingElse() throws Throwable {

           Assert.assertTrue(1 + 1 == 12);

        }

      

    }

如何进行Android单元测试,布布扣,bubuko.com

如何进行Android单元测试

标签:android   style   color   strong   for   io   

原文地址:http://www.cnblogs.com/liukedong/p/3838145.html

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