ReboletricSample工程搭建
受到 Just Say No to More End-to-End Tests
文章链接:http://googletesting.blogspot.tw/2015/04/just-say-no-to-more-end-to-end-tests.html
该文章启迪,决定对单元测试的内容稍做整理
Reboletric被测工程是Android Project,而测试工程是Java Project,执行的测试是Junit Test,并非Android Junit Test,跳过了模拟器,实现高效率运行
Reboletric官网:http://robolectric.org/getting-started/
工程环境Eclipse+maven(带M2Eclipse)插件
工程下载地址:
https://github.com/priyaaank/RobolectricSample
环境中,maven版本为3.1.1(需要根据情况更新到新版本);
robolectric包版本为:robolectric-2.4-jar-with-dependencies.jar
下载地址: https://repo1.maven.org/maven2/org/robolectric/robolectric/2.4/
M2Eclipse推荐安装方式:
插件方式,Help-Install new Software- 输入以下地址,
http://download.eclipse.org/technology/m2e/releases/
RobolectricSample示例工程
1.下载示例工程
2.命令行下切换到工程目录,执行android update project -p . --target 1
(--target指定android的api level,android list命令可查询)
3.import 导入示例工程
4.配置build path,添加robolectric-***-jar-with-dependencies.jar包;
添加<your android install directory>/add-ons/addon-google_apis-google-**/libs/maps.jar
关于Google Maps API maps.jar file for android
First of all update your SDK->Google Play Services and then
Find this Path in your Computer :
...\android-sdk-windows\add-ons\addon-google_apis-google-17\libs\maps.jar
add this jar using Add External Jar
...
导入包后的build path路径下如图所示:
5.右键test下工程,Right-click -> Run As ->JUnit Test
会提示如下对话框:
点击OK取消后,会弹出一个配置的对话框
6.
下载Android.jar
地址:http://www.java2s.com/Code/Jar/a/Downloadandroidjar.htm
配置Run Configuration,Right-click -> Run As -> Run Configurations
Tab: Classpath -> User Entries -> Add External JARs ...
找到android.jar
7.运行测试用例;右键点击测试用例,选择Run As -> Junit Test
执行后查看结果:
HttpTest.java这个case中导入的包
import com.google.inject.internal.Maps;
查到存在此文件的JAR包:
com.google.inject.internal.Maps.java
http://www.java2s.com/Code/Jar/g/Downloadguicepatches214sourcesjar.htm
执行mvn clean test后提示找不到com.google.inject.internal
笔者改为:
import com.google.inject.internal.util.$Maps;
com.google.inject.internal.util
com.google.inject.internal.util.Maps
执行后成功
可能遇到的问题:
1.Project build error: Unknown packaging: apk
在Eclipse中安装m2e-android插件
安装源:http://download.eclipse.org/technology/m2e/releases/
安装方法:Help -> Install new Software -> 在出来的对话框中点击 Add ->
Name:m2e-android
若m2e装好后仍未解决,检查Maven配置
Windows—>Preferences—>Maven—>User Settings,查看setting.xml
确保这里的Maven不是用的Eclipse自带的,而是本地下载的新版本的Maven
2.mvn clean install 报错:
Failure to find org.springframework:spring:jar:3.0.0.RELEASE in http://download.java.net/maven/2/ was cached in
the local repository, resolution will not be reattempted until the update interval of Java.Net has elapsed or updates are forced -> [Help 1] 解决办法:
Not sure if this works for Maven 3, here's what would work for Maven 2. This should work to clean the local repository: mvn dependency:purge-local-repository
Otherwise, try cleaning the specific artifact from your local repository: * Linux: ~/.m2
* Windows: C:\Documents and Settings\USER\.m2
另外见上两篇博文maven的两个坑:
3.http://www.cnblogs.com/melody-emma/p/5112658.html
4.http://www.cnblogs.com/melody-emma/p/5112722.html
5.@Override 的代码全部都报错
默认Maven中的JAVA版本是1.5,只要修改成1.6就好了 <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
希望本文能帮助你不再被坑
参考文章:http://blog.csdn.net/hunterno4/article/details/20653817
ReboletricSample工程搭建的更多相关文章
- 某马-某淘商城的day01--->分析,工程搭建,tomcat插件启动工程,svn,反思
-1:为什么还要写某马的某淘商城呢? 答:万物更新,季节交替.新人总把旧人换.所以呢,前人写了N多遍的东西,我们依旧在学,所以下决心写某马的某淘商城.(也因为在学校还没找工作,所以找个相对长期的事情做 ...
- Django---框架简介和工程搭建
Django框架 一.Django介绍 二.Django工程搭建 回到顶部 一.Django介绍 1.简介 Django的主要目的是简便.快速的开发数据库驱动的网站.它强调代码复用,多个组件可以 ...
- 单工程搭建springmvc+spring+mybatis(maven,idea)
单工程搭建springmvc+spring+mybatis(maven,idea) 1.pom.xml <properties> <project.build.sourceEncod ...
- Mybatis工程搭建
工程搭建 • 1依赖包 • 2配置文件 • 2.1spring-mybatis.xml • 2.2mybatis-config.xml自带配置文件 • 2.3 mapper(dao)对象 • 2.4 ...
- JAVAEE——宜立方商城01:电商行业的背景、商城系统架构、后台工程搭建、SSM框架整合
1. 学习计划 第一天: 1.电商行业的背景. 2.宜立方商城的系统架构 a) 功能介绍 b) 架构讲解 3.工程搭建-后台工程 a) 使用maven搭建工程 b) 使用maven的tomcat插件启 ...
- JAVAEE——淘淘商城第一天:电商行业的背景和技术特点,商城的介绍、技术的选型、系统架构和工程搭建
1. 学习计划 1.电商行业的背景. 2.电商行业的技术特点 3.商城的介绍 a) 常用的名词介绍 b) 系统功能介绍 4.淘淘商城的系统架构 a) 传统架构 b) 分布式架构 c) 基于服务的架构 ...
- SpringBoot - 工程搭建
SpringBoot 简介 1.Spring 的封装.其设计目的是用来简化 Spring 应用的初始搭建以及开发过程. 2.SpringCloud 微服务的基础 搭建环境 jdk 1.8 + mave ...
- JNI工程搭建及编译
JNI工程搭建及编译 建立Java工程 在具有C/C++比编译器的Eclipse中进行工程的创建,先创建一个简单的Java project,选项和一般同,这里仅仅需要将要调用的C/C++函数声明为na ...
- net core Webapi基础工程搭建(六)——数据库操作_Part 2
目录 前言 开始 使用 小结 前言 昨天是写着写着发现,时间不早了,已经养成了晚上下班抽时间看看能写点儿啥的习惯(貌似),今天实在是不想让昨天没做完的事情影响,所以又坐下,沉下心(周末了),开始把数据 ...
随机推荐
- Java面试之JVM原理总结
1.什么是JVM? 答:JVM是Java Virual Machine(Java虚拟机)的缩写,JVM是一种用于计算设备的规范,他是一个虚构出来的计算机,是通过在实际的计算机上仿真模拟计算机功能来实现 ...
- [转] Makefile 基础 (2) —— Makefile 总述
该篇文章为转载,是对原作者系列文章的总汇加上标注. 支持原创,请移步陈浩大神博客:(最原始版本) http://blog.csdn.net/haoel/article/details/2886 我转自 ...
- Vmware Linux虚拟机磁盘扩容方法
我的LINUX版本是ubuntu12.04 32bit.今天在下载android源代码的时候发现自己最初给这个虚拟机分配的磁盘空间不足了(只有20G).所以就需要给磁盘扩容.网上大致搜索了一下,主要有 ...
- springboot中如果使用了@Autowired注入了bean,则这个类也要为spring bean,new出来注入的bean为null
https://blog.csdn.net/Mr_Runner/article/details/83684088 问题:new出来的实例中含有@Autowired注入时,注入的Bean为null: 解 ...
- 【CF1023A】Single Wildcard Pattern Matching(模拟)
题意:给定两个串s与t,其中s可能有至多一个通配符*可以被当做任意长度与内容的串,问t能否与s匹配 n,m<=2e5 思路: #include<cstdio> #include< ...
- Android Tools update proxy
Android Tools Android SDK在线更新镜像服务器 中国科学院开源协会镜像站地址: IPV4/IPV6: http://mirrors.opencas.cn 端口:80 IPV4/I ...
- ListView列表刷新方法的区别
ListView列表刷新方法的区别 ListView对象的刷新方法: listNote.invalidate();重绘所有组件listNote.invalidateViews();重绘组件[包含所有的 ...
- Install Battery Historian
1. Recommended extra packages for Trusty 14.04 $ sudo apt-get update $ sudo apt-get install \ linux- ...
- svn不是内部或外部命令?
svn不是内部或外部命令? 我的系统是Win7, [计算机]-->右键[属性]-->[高级系统设置]-->[环境变量]-->[系统变量 (S)]-->[Path]--&g ...
- Python Challenge 第三关
进入第三关,还是一张图加一句话:One small letter, surrounded by EXACTLY three big bodyguards on each of its sides. 图 ...