【原】Spring测试类代码

2019-08-16 10:10:12来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

【原】Spring测试类代码

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.using.api.service.GoodsServiceImpl;


@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations="classpath:config/spring.xml")
public class AspectJTest {

@Autowired
GoodsServiceImpl goddsService;

@Test
public void test1(){

}
}

 

 


原文链接:https://www.cnblogs.com/zdd-java/p/11168459.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:java设计模式--单例模式

下一篇:JAVA基础之DBUtils与连接池