Skip to content

Commit 5add877

Browse files
author
BobIT37
committed
added listeners
1 parent e3730ff commit 5add877

19 files changed

+195
-1
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitattributes

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.java linguist-detectable=true
2+
*.js linguist-detectable=false
3+
*.html linguist-detectable=false
4+
*.xml linguist-detectable=false

.gitignore

-1
This file was deleted.

target/classes/META-INF/MANIFEST 3.MF

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Manifest-Version: 1.0
2+
Built-By: bobit
3+
Build-Jdk: 1.8.0_231
4+
Created-By: Maven Integration for Eclipse
5+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#Generated by Maven Integration for Eclipse
2+
#Mon Dec 02 00:18:48 EST 2019
3+
version=0.0.1-SNAPSHOT
4+
groupId=Aug2019RestAssuredAPIFW
5+
m2e.projectName=RestAPIFramework
6+
m2e.projectLocation=/Users/bobit/Documents/workspace/RestAPIFramework
7+
artifactId=Aug2019RestAssuredAPIFW
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,156 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>Aug2019RestAssuredAPIFW</groupId>
6+
<artifactId>Aug2019RestAssuredAPIFW</artifactId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
<packaging>jar</packaging>
9+
10+
<name>Aug2019RestAssuredAPIFW</name>
11+
<url>http://maven.apache.org</url>
12+
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
<aspectj.version>1.8.10</aspectj.version>
16+
17+
</properties>
18+
19+
<build>
20+
<plugins>
21+
<plugin>
22+
<groupId>org.apache.maven.plugins</groupId>
23+
<artifactId>maven-compiler-plugin</artifactId>
24+
<version>3.8.1</version>
25+
<configuration>
26+
<source>1.8</source>
27+
<target>1.8</target>
28+
</configuration>
29+
</plugin>
30+
31+
<plugin>
32+
<groupId>org.apache.maven.plugins</groupId>
33+
<artifactId>maven-surefire-plugin</artifactId>
34+
<version>2.20</version>
35+
<configuration>
36+
<useSystemClassLoader>false</useSystemClassLoader>
37+
38+
<suiteXmlFiles>
39+
<suiteXmlFile>src/test/resources/testrunner/testng.xml</suiteXmlFile>
40+
</suiteXmlFiles>
41+
<argLine>
42+
-javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
43+
</argLine>
44+
</configuration>
45+
46+
<dependencies>
47+
<dependency>
48+
<groupId>org.aspectj</groupId>
49+
<artifactId>aspectjweaver</artifactId>
50+
<version>${aspectj.version}</version>
51+
</dependency>
52+
</dependencies>
53+
54+
</plugin>
55+
56+
</plugins>
57+
</build>
58+
59+
<dependencies>
60+
61+
<!-- https://mvnrepository.com/artifact/io.rest-assured/rest-assured -->
62+
<dependency>
63+
<groupId>io.rest-assured</groupId>
64+
<artifactId>rest-assured</artifactId>
65+
<version>4.0.0</version>
66+
<scope>compile</scope>
67+
</dependency>
68+
69+
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
70+
<dependency>
71+
<groupId>com.fasterxml.jackson.core</groupId>
72+
<artifactId>jackson-databind</artifactId>
73+
<version>2.9.9.3</version>
74+
</dependency>
75+
76+
<!-- https://mvnrepository.com/artifact/io.rest-assured/json-schema-validator -->
77+
<dependency>
78+
<groupId>io.rest-assured</groupId>
79+
<artifactId>json-schema-validator</artifactId>
80+
<version>4.0.0</version>
81+
</dependency>
82+
83+
<!-- https://mvnrepository.com/artifact/org.testng/testng -->
84+
<dependency>
85+
<groupId>org.testng</groupId>
86+
<artifactId>testng</artifactId>
87+
<version>6.14.3</version>
88+
<scope>compile</scope>
89+
</dependency>
90+
91+
92+
<dependency>
93+
<groupId>org.apache.commons</groupId>
94+
<artifactId>commons-io</artifactId>
95+
<version>1.3.2</version>
96+
</dependency>
97+
98+
<dependency>
99+
<groupId>org.apache.poi</groupId>
100+
<artifactId>poi</artifactId>
101+
<version>3.9</version>
102+
</dependency>
103+
<dependency>
104+
<groupId>org.apache.poi</groupId>
105+
<artifactId>poi-ooxml</artifactId>
106+
<version>3.9</version>
107+
</dependency>
108+
<dependency>
109+
<groupId>org.apache.poi</groupId>
110+
<artifactId>poi-ooxml-schemas</artifactId>
111+
<version>3.9</version>
112+
</dependency>
113+
<dependency>
114+
<groupId>org.apache.poi</groupId>
115+
<artifactId>poi-scratchpad</artifactId>
116+
<version>3.9</version>
117+
</dependency>
118+
<dependency>
119+
<groupId>org.apache.poi</groupId>
120+
<artifactId>ooxml-schemas</artifactId>
121+
<version>1.1</version>
122+
</dependency>
123+
124+
<dependency>
125+
<groupId>org.apache.poi</groupId>
126+
<artifactId>openxml4j</artifactId>
127+
<version>1.0-beta</version>
128+
</dependency>
129+
130+
<dependency>
131+
<groupId>com.aventstack</groupId>
132+
<artifactId>extentreports</artifactId>
133+
<version>3.1.5</version>
134+
</dependency>
135+
136+
<dependency>
137+
<groupId>io.qameta.allure</groupId>
138+
<artifactId>allure-testng</artifactId>
139+
<version>2.12.0</version>
140+
</dependency>
141+
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
142+
<dependency>
143+
<groupId>org.aspectj</groupId>
144+
<artifactId>aspectjweaver</artifactId>
145+
<version>1.8.10</version>
146+
</dependency>
147+
<!-- https://mvnrepository.com/artifact/com.jayway.jsonpath/json-path -->
148+
<dependency>
149+
<groupId>com.jayway.jsonpath</groupId>
150+
<artifactId>json-path</artifactId>
151+
<version>2.4.0</version>
152+
</dependency>
153+
154+
155+
</dependencies>
156+
</project>
5.55 KB
Binary file not shown.
570 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
2.39 KB
Binary file not shown.
Binary file not shown.
2.1 KB
Binary file not shown.
892 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
3+
4+
<suite name="GO Rest Test Suite" verbose="1" parallel="tests"
5+
thread-count="3">
6+
7+
<listeners>
8+
<listener class-name="com.qa.listeners.ExtentReportListener" />
9+
<listener class-name="com.qa.listeners.AllureReportListener" />
10+
11+
</listeners>
12+
13+
<test name="Go Rest regression Test" parallel="classes"
14+
thread-count="3">
15+
<classes>
16+
<class name="com.qa.gorest.tests.CreateUserAPITest" />
17+
<class name="com.qa.gorest.tests.DeleteUserAPITest" />
18+
<class name="com.qa.gorest.tests.GetUserAPITest" />
19+
<class name="com.qa.gorest.tests.UpdateUserAPITest" />
20+
21+
</classes>
22+
</test>
23+
</suite>

0 commit comments

Comments
 (0)