Springmvcプロジェクトユニットのテスト方法
springmvcのユニットテストを完了するにはspringmvc-testコンポーネントを導入する必要があります.
通常のユニットテストとは異なり、springmvcプロジェクトをテストするspringmvcのアセンブリプロファイルをロードするテストクラスを作成します.
完全なテストクラス
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring-version}</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
通常のユニットテストとは異なり、springmvcプロジェクトをテストするspringmvcのアセンブリプロファイルをロードするテストクラスを作成します.
@RunWith(SpringJUnit4ClassRunner.class) // springmvc
@ContextConfiguration(locations = { "file:src/main/webapp/WEB-INF/applicationContext.xml", // springmvc ,
"file:src/main/webapp/WEB-INF/applicationContext-MyBatis.xml")
完全なテストクラス
package com.xxx.manager.privilege.service.impl;
import javax.annotation.Resource;
import junit.framework.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.annotation.Rollback;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.transaction.TransactionConfiguration;
import org.springframework.transaction.annotation.Transactional;
/**
*
* @title
* @usage
* @copyright Copyright 2014 hjb365. All rights reserved.
* @author gaoxueyan
* @version $Id: ParamServiceImplTest.java, v1.0
* @create 2014 9 22 1:17:49
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "file:src/main/webapp/WEB-INF/applicationContext.xml",
"file:src/main/webapp/WEB-INF/applicationContext-MyBatis.xml",
"file:src/main/webapp/WEB-INF/applicationContext-SpringMVC.xml",
"file:src/main/webapp/WEB-INF/applicationContext-Third.xml"})
@TransactionConfiguration
@Transactional
public class ParamServiceImplTest {
@Resource
private ParamService paramService;
/**
*
* @throws Exception
*/
@Test
@Rollback
public void testMethod() throws Exception{
// junit
}
}