匯入spring整合junit的jar包
>
>
junitgroupid
>
>
junitartifactid
>
>
4.12version
>
>
testscope
>
dependency
>
>
>
org.springframeworkgroupid
>
>
spring-testartifactid
>
>
5.2.4.releaseversion
>
dependency
>
使用junit提供的runwith註解,將原有的main方法用spring提供的替換。
通過contextconfiguration註解告知spring的執行期,spring的ioc建立是基於xml還是註解,並說明其位置。
【原先的測試案例】
public
class
accountservicetest
}}
@runwith
(springjunit4classrunner.
class
)@contextconfiguration
(locations =
"classpath:bean.xml"
)public
class
accountservicetest
}}
@runwith
(springjunit4classrunner.
class
)@contextconfiguration
(classes = springconfiguration.
class
)public
class
accountservicetest
}}
spring 整合Junit,整合web
l 匯入jar包 基本 4 1 測試 spring test.jar 1.讓junit通知spring載入配置檔案 2.讓spring容器自動進行注入 l 修改測試類 package com.hcx import org.junit.test import org.junit.runner.runw...
Spring整合junit測試
spring提供spring test 3.2.0.release.jar 可以整合junit 優勢 可以簡化測試 不需要手動建立上下文 目標 測試spring的bean的某些功能 runwith springjunit4classrunner.class 固定寫法,junit整合spring的測試...
Spring整合Junit測試
spring整合junit是為了解決 重複和配置檔案多次載入的問題 解決的方法很簡單 第一步使用註解告訴spring配置檔案在哪 第二步使用註解讓spring載入配置檔案 要匯入的包有spring的aop和test,junit的單元測試包 contextconfiguration value cla...