Logi-KM testng 测试环境搭建 & springboot 集成 & mock 测试用例编写.

This commit is contained in:
huqidong
2021-12-03 18:04:20 +08:00
parent 24d7b80244
commit ff0f4463be
10 changed files with 520 additions and 60 deletions

View File

@@ -98,5 +98,23 @@
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<!-- testng -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/org.testng/testng -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.10</version>
</dependency>
</dependencies>
</project>