package test;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.zxl.aop.IOrderService;
import com.zxl.aop.OrderServiceImpl;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations="classpath:applicationContext.xml")
public class Aop1Test {
@Autowired
// @Qualifier("orderServiceProxy") //aop1.xml
private IOrderService orderService;
@Test
public void test1(){
orderService.updateOrder();
// ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
// OrderServiceImpl orderService = (OrderServiceImpl) applicationContext.getBean("orderService");
// orderService.addOrder();
}
}
Spring测试类代码编写(二)
原创a772304419 ©著作权
©著作权归作者所有:来自51CTO博客作者a772304419的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
ES工具操作测试类
ES工具操作测试类
User System elasticsearch -
Java测试book类 java中测试类怎么写
Junit单元测试框架的基本使用一、搭建环境: 导入junit.jar包(junit4) 二、写测试类: 0,一般一个类对应一个测试类。 1,测试类与被测试类最好
Java测试book类 测试 java 单元测试 测试方法