spring使用junit單元測試

2021-10-04 11:38:30 字數 612 閱讀 7274

/**

* * spring整合junit的配置

* 1、pom.xml匯入spring整合junit的jar(座標)

* 2、使用junit提供的乙個註解把原有的main方法替換了,替換成spring提供的

* @runwith

* 3、告知spring的執行器,spring和ioc建立是基於xml還是註解的,並且說明位置

* @contextconfiguration

* locations:指定xml檔案的位置,加上classpath關鍵字,表示在類路徑下

* classes:指定註解類所在地位置

* * 當我們使用spring 5.x版本的時候,要求junit的jar必須是4.12及以上

*/@runwith(springjunit4classrunner.class)

@contextconfiguration(classes = mybatisconfig.class)

public class test

}

使用Spring配合Junit進行單元測試的總結

最近公司的專案和自己的專案中都用到了spring整合 junit進行 單元測試,總結一下幾種基本的用法 1.直接對spring中注入的bean進行測試 以dao為例 在測試類上新增 runwith註解指定使用springjunit的測試執行器,contextconfiguration註解指定測試用的...

spring配合Junit進行單元測試

在測試類上新增 runwith註解指定使用springjunit的測試執行器,contextconfiguration註解指定測試用的spring配置檔案的位置。接著我們就可以注入我們需要測試的bean進行測試,junit在執行測試之前會先解析spring的配置檔案,初始化spring中配置的bea...

Spring 4 x使用Junit4進行單元測試

最近公司使用spring框架開發,以前用的不多,開始使用了之後,想寫個單元測試來測試一下功能,於是乎從網上找了一下測試的例子,看到最多的就是使用 runwith springjunit4classrunner.class contextconfiguration locations 這種型別的,需要...