当前位置:  开发笔记 > Android > 正文

TestNG + Spring + Power模拟单元测试

如何解决《TestNG+Spring+Power模拟单元测试》经验,为你挑选了0个好方法。

我有一个基于Spring的应用程序,我正在进行单元测试.我正在使用TestNG进行单元测试.对于我的测试,我需要使用PowerMockito来模拟一些静态方法.我还需要使用测试弹簧配置文件仅用于我的单元测试.

我无法编写我的单元测试,结合所有三个,即TestNg,PowerMock和Spring.

我可以通过扩展AbstractTestNGSpringContextTests类来组合TestNG和Spring,但是不能模拟静态方法,而是执行实际的静态方法.像下面这样的东西:

@PrepareForTest(MyUtils.class)
@ContextConfiguration(locations = { "classpath:config/test-context.xml"})
public class MyImplTest extends AbstractTestNGSpringContextTests{

.....

}

我可以通过扩展类PowerMockTestCase将TestNG与PowerMockito结合起来.但是测试弹簧配置文件没有解决.像下面这样的东西:

@PrepareForTest(MyUtils.class)
@ContextConfiguration(locations = { "classpath:config/test-context.xml"})
public class MyImplTest extends PowerMockTestCase{

.....

}

有没有办法让我编写我的单元测试,结合所有三个,即TestNg,PowerMockito和Spring上下文?

推荐阅读
惬听风吟jyy_802
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有