6.Spring测试单元使用总结
1. Spring测试单元使用总结
第一步:添加相关依赖
Spring单元测试包spring-test-4.0.0.RELEASE.jar
第二步:指定Spring配置文件的位置
@ContextConfiguration(locations = "classpath:applicationContext.xml")
第三步:指定单元测试驱动
默认是
junit
@RunWith(SpringJUnit4ClassRunner.class)
第四步:代码演示
1 |
|
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Jilfoyle!