我有一个基于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上下文?