IDEA中测试类
程序员文章站
2024-03-24 19:12:34
...
1. 创建一个目录,右键-- 设置为测试目录
2. maven项目中,需要重新添加依赖
如果添加失败,报错的话,可能是复制过去,报错,直接复制下面的网址,找到对应的版本去重新拿到依赖的那个
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-test -->
<dependency>
<groupId>org.springframewomework</groupId>
<artifactId>spring-test</artifactId>
<version>4.3.3.RELEASE</version>
<scope>test</scope>
</dependency>
gradle 项目中:
dependencies {
compile spring_core,spring_web,mybatis
compile jdbc,json,logging,apache_commons
providedCompile servlet
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group:'org.springframework', name:'spring-test', version:'4.3.3.RELEASE'
}
3. 创建的测试类中,添加注释:(对应的包和注释,这是放在类前面的)
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {
"classpath:application-context.xml"
})
public class TestMeng{ }
上一篇: IDEA + Maven JavaWeb基本开发环境搭建
下一篇: vulnhub-XXE
推荐阅读
-
IDEA中测试类
-
IntelliJ IDEA常用快捷键大全(完整版)以及页面中字体设置
-
如何在IDEA中使用jcstress进行并发压力测试
-
如何在IDEA中配置git ?
-
Intellij IDEA中Maven配置注意事项
-
struts2在jar包中找得到对应类,还是报找不到filter的错误 博客分类: web框架
-
AS3.0中Matrix类的学习经验(改变注册点、旋转图像)
-
将对象使用Object类中的toString方法转为字符串后是否可以再转回对象?
-
Mac升级系统后,idea中Git无法使用:xcrun: error: invalid active developer path
-
打开Java中的SecurityManager 博客分类: java java单元测试xmlant