博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在android 采用 android junit test 测试注意
阅读量:6268 次
发布时间:2019-06-22

本文共 865 字,大约阅读时间需要 2 分钟。

在Manifest.xml文件进行设置;

包名:com.study.s001

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.study.s001"
      android:versionCode="1"
      android:versionName="1.0">
    <uses-sdk android:minSdkVersion="9" />
    
    <instrumentation
         android:name="android.test.InstrumentationTestRunner"
         android:targetPackage="com.study.s001" />   <!---   -------++++++ ->
    
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".StudyActivity2"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
      <uses-library android:name="android.test.runner" />  <!---   -------++++++ ->
    </application>
</manifest>

转载于:https://www.cnblogs.com/xmyy/articles/2781790.html

你可能感兴趣的文章
Spring + Hibernate 框架
查看>>
添加浏览器的用户样式表
查看>>
LigerUI学习笔记之布局篇 layout
查看>>
LeetCode题解(二)
查看>>
Mybatis通用Mapper
查看>>
文件磁盘命令(就该这么学6章内容)
查看>>
2016-207-19 随笔
查看>>
java的double类型如何精确到一位小数?
查看>>
看看国外的javascript题目,你能全部做对吗?
查看>>
ffmpeg 如何选择具有相同AVCodecID的编解码器 (AVCodec)
查看>>
真正解决 Windows 中 Chromium “缺少 Google API 密钥” 的问题
查看>>
Spring 之 AOP
查看>>
软件项目管理|期末复习(二)
查看>>
直接调用VS.net2005中的配置界面
查看>>
程序员的自我修养五Windows PE/COFF
查看>>
关于字符集,编码格式,大小端的简单总结
查看>>
js string 转 int Number()
查看>>
课堂练习:ex 4-20
查看>>
20155328 2016-2017-2 《Java程序设计》 第8周学习总结
查看>>
python操作redis--string
查看>>