使用@RunWith注释和 powerMock 时出现的问题
最初,我在 junits 中只使用 Mockito,所以我在@RunWith注释中使用 SpringJUnit4ClassRunner.class即
@RunWith(SpringJUnit4ClassRunner.class)
由于弹簧依赖注入工作正常,并且通过豆子
@Autowired
Someservice someservice ;
但现在,我也在其中集成了PowerMock。
因此,根据文档,我已将@RunWith注释中提到的类替换为
@RunWith(PowerMockRunner.class)
但是现在,某些服务显示为 null。有没有办法在@RunWith注释中同时使用SpringJUnit4ClassRunner.class和PowerMockRunner.class