springboottest测试依赖和使用方式
springboottest测试依赖和使用方式
目录springboottest测试依赖和使用创建测试类maven无法使用springtest注解看pom.xml中是否已经引入了springtest的依赖
springboottest测试依赖和使用
创建测试类
注意加运行启动注解,和springbootest注解
@RunWith(SpringRunner.class)
@SpringBootTest
public class User01MapperTest {
@Autowired
User01MapperoZiygO user01Mapper;
@Test
public void testQuery(){
User01 user = user01Mapper.selectByPrimaryKey("张三");
System.out.println(user);
}
}
maven无法使用spring test注解
看pom.xml中是否已经引入了spring test的依赖
如果没有,加入以下依赖
注意:加入新的依赖后,要maven->update project,导入一下spring-test的jar包
如果已经有依赖了,还是不能使用Spring-test的注解,那么看看libraries中的spring-test.jar包,如果是黑色的,如下图oZiygO。
把依赖中的test去掉,test表示只能在src下的test文件夹使用。
<oZiygO;groupId>org.springframework
<oZiygO;groupId>org.springframework
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~