码迷,mamicode.com
首页 > 编程语言 > 详细

Java单元测试

时间:2017-10-04 18:30:59      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:ase   false   contex   sys   cti   ack   frame   artifact   需要   

pom.xml中:

<!-- https://mvnrepository.com/artifact/org.springframework/spring-test -->
<dependency>
   <groupId>org.springframework</groupId>
   <artifactId>spring-test</artifactId>
   <version>4.3.6.RELEASE</version>
   <!--<scope>test</scope>-->
</dependency>
<dependency>
   <groupId>junit</groupId>
   <artifactId>junit</artifactId>
   <version>4.12</version>
   <!--<scope>test</scope>-->
</dependency>

createTest:

类上面加:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
@Transactional
@TransactionConfiguration(defaultRollback = false)

类里面加:

@Before
public void setUp() throws Exception {
	ApplicationContext context = new    ClassPathXmlApplicationContext("/applicationContext.xml");
	SpringBeanUtil.initContext(context);
}

需要设置的全局变量:

SessionContext.setTenantId(100000000001L); // 全局租户
SessionContext.setOpId(100000000001L); // 全局操作员id


System.setProperty("MQ_HOST_LIST","192.168.70.250");
System.setProperty("MQ_USER_NAME","admin");
System.setProperty("MQ_PASS_WORD","123456");
System.setProperty("hub.configure.type","DataBase");

Java单元测试

标签:ase   false   contex   sys   cti   ack   frame   artifact   需要   

原文地址:http://www.cnblogs.com/pzyin/p/7625921.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!