forked from tronprotocol/java-tron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestng.xml
More file actions
45 lines (41 loc) · 1.21 KB
/
testng.xml
File metadata and controls
45 lines (41 loc) · 1.21 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Stest" parallel="tests" thread-count="4">
<listeners>
<listener class-name="stest.tron.wallet.common.client.utils.RetryListener"/>
</listeners>
<test name="account,transfer">
<packages>
<package name="stest.tron.wallet.transfer">
</package>
<package name="stest.tron.wallet.account">
</package>
</packages>
</test>
<test name="exchangeandtoken,mutisign">
<packages>
<package name="stest.tron.wallet.exchangeandtoken">
</package>
<package name="stest.tron.wallet.mutisign">
</package>
</packages>
</test>
<test name="Contract linkage,block,node">
<packages>
<package name="stest.tron.wallet.contract.linkage">
</package>
<package name="stest.tron.wallet.block">
</package>
</packages>
</test>
<test name="contract scenario,committee,witness">
<packages>
<package name="stest.tron.wallet.contract.scenario">
</package>
<package name="stest.tron.wallet.committee">
</package>
<package name="stest.tron.wallet.witness">
</package>
</packages>
</test>
</suite>