java: 无法访问org.testng.IHookable 找不到org.testng.IHookable的类文件
报错提示
解决:在pom.xml中添加依赖
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.14.3</version>
<scope>test</scope>
</dependency>
java: 无法访问org.testng.IHookable 找不到org.testng.IHookable的类文件
阅读 184
2022-02-23
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.14.3</version>
<scope>test</scope>
</dependency>
相关推荐
精彩评论(0)