forked from baozhida/MacacaAutomation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build_android.xml
77 lines (65 loc) · 3.03 KB
/
build_android.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0" encoding="UTF-8"?>
<project name="Macaca" default="exec_replace" basedir=".">
<!-- =================================================================== -->
<!-- 变量设置-->
<!-- =================================================================== -->
<!-- 编译文件class路径 -->
<property name="bulid.path" value="./build"/>
<!-- 单元测试代码路径 -->
<property name="test.path" value="./src"/>
<!-- lib包路径 根据实际情况修改 -->
<property name="lib.path" value="/Users/MAC/.m2/repository"/>
<!--生成报告junit4.xml路径 -->
<property name="report.path" value="./report"/>
<!--终端平台类型-->
<property name="platform" value="android"/>
<!-- =================================================================== -->
<!-- 设置classpath -->
<!-- =================================================================== -->
<path id="compile.path">
<fileset dir="${lib.path}">
<include name="**/*.jar"/>
</fileset>
<pathelement path="${bulid.path}"/>
</path>
<target name="init">
<!-- 清除Junit生成的报表文档 -->
<delete dir="${report.path}/${platform}"/>
<mkdir dir="${report.path}/${platform}"/>
<!-- 清除历史编译class -->
<delete dir="${bulid.path}"/>
<mkdir dir="${bulid.path}"/>
</target>
<!-- =================================================================== -->
<!-- 编译测试文件,初始化目录 -->
<!-- =================================================================== -->
<target name="compile" depends="init" description="compile">
<javac srcdir="${test.path}" destdir="${bulid.path}" classpathref="compile.path" includeantruntime="on" encoding="UTF-8"/>
</target>
<!-- =================================================================== -->
<!-- 执行测试案例 -->
<!-- =================================================================== -->
<target name="junit" depends="compile">
<junit printsummary="true" fork="true">
<formatter type="xml" usefile="true"/>
<classpath refid="compile.path"/>
<batchtest fork="on" todir="${report.path}/${platform}" haltonfailure="no">
<fileset dir="${bulid.path}">
<include name="junittestcase/${platform}/*.class"/>
</fileset>
</batchtest>
</junit>
<!-- 产生单元测试报表文档 -->
<junitreport todir="${report.path}/${platform}">
<fileset dir="${report.path}/${platform}">
<include name="TEST-*.xml" />
</fileset>
<report format="frames" todir="${report.path}/${platform}" />
</junitreport>
</target>
<target name="exec_replace" depends="junit" description="deal the lable">
<exec executable="./bin/exec_replace.sh">
<arg value="${platform}"/>
</exec>
</target>
</project>