http://412887952-qq-com.iteye.com/blog/2317832-Junit1.4版本
添加依賴
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
測(cè)試Service
@Service
public class StudentService{
@Resource
private StudentDao studentDao;
public String junitTest(){
return "hello";
}
}
測(cè)試
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.SpringApplicationConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
import com.tutorial.springboot.AppStart;
import com.tutorial.springboot.service.StudentService;
//SpringJUnit支持西采,由此引入Spring-Test框架支持
@RunWith(SpringJUnit4ClassRunner.class)
//指定我們SpringBoot工程的Application啟動(dòng)類
@SpringApplicationConfiguration(classes = AppStart.class)
//1.4.0已經(jīng)被標(biāo)注過(guò)時(shí),需要替換為@SpringbootTest注解
//由于是Web項(xiàng)目十艾,Junit需要模擬ServletContext派近,因此我們需要給我們的測(cè)試類加上@WebAppConfiguration
@WebAppConfiguration
public class SpringBootTest{
@Resource
private StudentService studentService;
@Test
public void testGetName(){
Assert.assertEquals("hello",studentService.junitTest());
}
}
Junit基本注解介紹
//在所有測(cè)試方法前執(zhí)行一次,一般在其中寫上整體初始化的代碼 @BeforeClass
//在所有測(cè)試方法后執(zhí)行一次蟀悦,一般在其中寫上銷毀和釋放資源的代碼 @AfterClass
//在每個(gè)測(cè)試方法前執(zhí)行媚朦,一般用來(lái)初始化方法(比如我們?cè)跍y(cè)試別的方法時(shí),類中與其他測(cè)試方法共享的值已經(jīng)被改變日戈,為了保證測(cè)試結(jié)果的有效性询张,我們會(huì)在@Before注解的方法中重置數(shù)據(jù)) @Before
//在每個(gè)測(cè)試方法后執(zhí)行,在方法執(zhí)行完成后要做的事情 @After
// 測(cè)試方法執(zhí)行超過(guò)1000毫秒后算超時(shí)涎拉,測(cè)試將失敗 @Test(timeout = 1000)
// 測(cè)試方法期望得到的異常類瑞侮,如果方法執(zhí)行沒(méi)有拋出指定的異常,則測(cè)試失敗 @Test(expected = Exception.class)
// 執(zhí)行測(cè)試時(shí)將忽略掉此方法鼓拧,如果用于修飾類半火,則忽略整個(gè)類 @Ignore(“not ready yet”) @Test
@RunWith 在JUnit中有很多個(gè)Runner,他們負(fù)責(zé)調(diào)用你的測(cè)試代碼季俩,每一個(gè)Runner都有各自的特殊功能钮糖,你要根據(jù)需要選擇不同的Runner來(lái)運(yùn)行你的測(cè)試代碼。 如果我們只是簡(jiǎn)單的做普通Java測(cè)試酌住,不涉及SpringWeb項(xiàng)目店归,你可以省略@RunWith注解,這樣系統(tǒng)會(huì)自動(dòng)使用默認(rèn)Runner來(lái)運(yùn)行你的代碼酪我。