-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtestng.xml
70 lines (65 loc) · 2.87 KB
/
testng.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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<!--tests级别:不同test tag下的用例可以在不同的线程执行,相同test tag下的用例只能在同一个线程中执行。-->
<!--classes级别:不同class tag下的用例可以在不同的线程执行,相同class tag下的用例只能在同一个线程中执行。-->
<!--methods级别:所有用例都可以在不同的线程去执行。-->
<!--thread-count: 并发线程数-->
<suite name="qywx_service_api">
<test name="通讯录">
<classes>
<class name="com.qq.qywx.addressbook.user.TestAddressbookGetAccessToken">
<methods>
<include name="testAddressbookGetAccessToken"/>
</methods>
</class>
<class name="com.qq.qywx.addressbook.user.TestCreateUser">
<methods>
<include name="testCreateUser"/>
</methods>
</class>
<class name="com.qq.qywx.addressbook.user.TestGetUser">
<methods>
<include name="testGetUser"/>
</methods>
</class>
<class name="com.qq.qywx.addressbook.user.TestUpdateUser">
<methods>
<include name="testUpdateUser"/>
</methods>
</class>
<class name="com.qq.qywx.addressbook.user.TestDeleteUser">
<methods>
<include name="testDeleteUser"/>
</methods>
</class>
<class name="com.qq.qywx.addressbook.user.TestBatchDeleteUser">
<methods>
<include name="testBatchDeleteUser"/>
</methods>
</class>
</classes>
</test>
<test name="客户联系">
<classes>
<class name="com.qq.qywx.externalcontact.customer.TestExternalcontactGetAccessToken">
<methods>
<include name="testExternalcontactGetAccessToken"/>
</methods>
</class>
<class name="com.qq.qywx.externalcontact.customer.TestListCustomer">
<methods>
<include name="testListCustomer"/>
</methods>
</class>
</classes>
</test>
<!-- 配置监听器 -->
<listeners>
<!-- 失败重试监听器 -->
<listener class-name="com.qq.qywx.common.retry.RetryListener"></listener>
<listener class-name="com.qq.qywx.common.retry.TestngListener"></listener>
<!-- 测试报告监听器 -->
<!--<listener class-name="xyz.vivo.vform.common.utils.ZTestReport"></listener>-->
<listener class-name="com.qq.qywx.common.utils.ExtentTestNGIReporterListener"></listener>
</listeners>
</suite>