|
4 | 4 | <modelVersion>4.0.0</modelVersion>
|
5 | 5 |
|
6 | 6 | <groupId>com.api</groupId>
|
7 |
| - <artifactId>tests</artifactId> |
| 7 | + <artifactId>api-tests</artifactId> |
8 | 8 | <version>1.0-SNAPSHOT</version>
|
9 | 9 | <packaging>jar</packaging>
|
10 | 10 |
|
|
16 | 16 | <url>https://github.com/EdwardLee03/api-tests</url>
|
17 | 17 |
|
18 | 18 | <properties>
|
| 19 | + <!-- Test(测试) --> |
| 20 | + <testng.version>6.9.10</testng.version> |
| 21 | + <assertj.version>2.3.0</assertj.version> |
| 22 | + <mockito.version>1.10.19</mockito.version> |
| 23 | + |
19 | 24 | <jdk.version>1.7</jdk.version>
|
20 | 25 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
21 | 26 | </properties>
|
22 | 27 |
|
23 | 28 | <dependencies>
|
| 29 | + <!-- ============ Test(测试) ============ --> |
| 30 | + <!-- TestNG - http://testng.org/doc/index.html --> |
| 31 | + <!-- Documentation - http://testng.org/doc/documentation-main.html --> |
| 32 | + <dependency> |
| 33 | + <groupId>org.testng</groupId> |
| 34 | + <artifactId>testng</artifactId> |
| 35 | + <version>${testng.version}</version> |
| 36 | + <scope>test</scope> |
| 37 | + </dependency> |
| 38 | + <!-- AssertJ - http://joel-costigliola.github.io/assertj/ --> |
| 39 | + <!-- Quick start - http://joel-costigliola.github.io/assertj/assertj-core-quick-start.html --> |
| 40 | + <dependency> |
| 41 | + <groupId>org.assertj</groupId> |
| 42 | + <artifactId>assertj-core</artifactId> |
| 43 | + <!-- use 3.3.0 for Java 8 projects --> |
| 44 | + <version>${assertj.version}</version> |
| 45 | + <scope>test</scope> |
| 46 | + </dependency> |
| 47 | + <!-- Mockito - http://site.mockito.org/ --> |
| 48 | + <!-- Mockito API - http://site.mockito.org/mockito/docs/current/org/mockito/Mockito.html --> |
| 49 | + <dependency> |
| 50 | + <groupId>org.mockito</groupId> |
| 51 | + <artifactId>mockito-core</artifactId> |
| 52 | + <version>${mockito.version}</version> |
| 53 | + <scope>test</scope> |
| 54 | + </dependency> |
24 | 55 | </dependencies>
|
25 | 56 |
|
26 | 57 | <issueManagement>
|
|
0 commit comments