摘要: 使用方法: 在IDEA pom.xml文件中导入allure需要的安装包 <dependency> <groupId>io.qameta.allure</groupId> <artifactId>allure-junit5</artifactId> <version>RELEASE</version 阅读全文
posted @ 2021-06-11 18:27 zhanchenglan 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 在IDEA pom.xml文件中导入junit5需要的安装包 导入依赖包后,即可在方法中添加@Test注解 @Test public void test(){ System.out.println("hhhh"); } 要注意使用junit5框架注解时,要导入正确的包,这点很重要,示例: impor 阅读全文
posted @ 2021-06-11 18:21 zhanchenglan 阅读(243) 评论(0) 推荐(0) 编辑
摘要: idea社区版下载地址:https://www.jetbrains.com/idea/download/#section=windows 1.创建一个maven工程 打开idea,点击菜单栏File-new-project-选择maven,project SDK选择Java jdk的安装路径,点击n 阅读全文
posted @ 2021-06-11 18:19 zhanchenglan 阅读(96) 评论(0) 推荐(0) 编辑
摘要: maven环境搭建:https://www.cnblogs.com/duduwy/p/12448076.html 1.先安装java环境 2.下载maven安装包:http://maven.apache.org/download.cgi,解压即可 3.配置maven的环境变量,在系统环境变量中增加: 阅读全文
posted @ 2021-06-11 18:12 zhanchenglan 阅读(32) 评论(0) 推荐(0) 编辑
摘要: java环境搭建:https://zhuanlan.zhihu.com/p/103291782(最好使用jdk1.0.8版本) 1.下载java sdk:http://www.oracle.com/technetwork/java/javase/downloads/index.html,点击Orac 阅读全文
posted @ 2021-06-11 18:09 zhanchenglan 阅读(28) 评论(0) 推荐(0) 编辑