-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestng.xml
More file actions
42 lines (37 loc) · 1.51 KB
/
testng.xml
File metadata and controls
42 lines (37 loc) · 1.51 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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<suite name="Secure Test Automation Suite" verbose="1">
<!-- Docker servislerini kontrol et -->
<test name="Docker Services Check" parallel="methods" thread-count="1">
<classes>
<class name="secure.com.test.DockerTestSuite"/>
</classes>
</test>
<test name="Login Tests" parallel="methods" thread-count="2">
<classes>
<class name="secure.com.test.JuiceShopLoginTest">
<methods>
<include name="testSuccessfulLogin"/>
<include name="testFailedLogin"/>
<include name="testEmptyCredentials"/>
<include name="testSqlInjectionAttempt"/>
</methods>
</class>
</classes>
</test>
<test name="ZAP Integration Tests" parallel="methods" thread-count="1">
<classes>
<class name="secure.com.test.ZapIntegratedTest">
<methods>
<include name="testLoginWithZapIntegration"/>
<include name="testSecurityWithZapIntegration"/>
</methods>
</class>
</classes>
</test>
<listeners>
<listener class-name="org.testng.reporters.XMLReporter"/>
<listener class-name="org.testng.reporters.JUnitReportReporter"/>
<listener class-name="org.testng.reporters.EmailableReporter2"/>
</listeners>
</suite>