package test;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.zxl.aspectj.IUserService;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations="classpath:applicationContext.xml")
public class AspectJTest {
@Autowired
private IUserService userService;
@Test
public void test1(){
userService.del();
}
}
Spring测试类代码编写
原创a772304419 ©著作权
©著作权归作者所有:来自51CTO博客作者a772304419的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:Spring测试类代码编写(二)
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
ES工具操作测试类
ES工具操作测试类
User System elasticsearch -
spring项目怎么写对应得测试类 spring项目实例
【回顾】 在上篇博客中,我们对Spring框架做了很细致的了解。从博客开头的实例中,我们知道了,没有使用Spring框架,就需要自己在应用程序中去写实例化对象的代码。现在,我们就看看使用了Spring框架,可以给我们带来怎样的便利。 【应用】 整个项目的目录不需要改
spring项目怎么写对应得测试类 Spring Demo spring xml