Spring+Junit4进行接口测试实例代码

网友投稿 250 2023-02-21


Spring+Junit4进行接口测试实例代码

本文研究的主要是Spring+Junit4进行接口测试的一个相关实例,具体实现代码如下。

1.配置pom.xml

org.springframework

spring-context

4.3.2.RELEASE

org.springframework</groupId>

spring-test

4.3.2.RELEASE

junit

junit

4.12

2.配置bean

testInterface可以进行手动配置或自动扫描

手动配置

spring配置文件配置:

自动扫描

接口实现类中配置

@Component

public class TestInterfaceImpl implements TestInterface {

spring配置文件配置

3.编写接口测试代码

import org.junit.Test;

import org.junit.runner.RunWith;

import org.springframework.test.context.ContextConfiguration;

import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import javax.annotation.Resource;

@RunWith(SpringJUnit4ClassRunner.class)

@ContextConfiguration(locations = "classpath:applicationContext.xml")

public class Test {

@Resource

TestInterface testInterface;

@Test

public void test1(){

testInterface.test1(1,2);

}

总结

以上就是本文关于Spring+Junit4进行接口测试实例代码的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:详解Vue单元测试Karma+Mocha学习笔记
下一篇:express如何使用session与cookie的方法
相关文章

 发表评论

暂时没有评论,来抢沙发吧~