我有一个要测试的 Spring 组件,并且该组件有一个自动装配的属性,我需要更改它以进行单元测试。问题是,该类在 post-construct 方法中使用自动装配组件,因此在实际使用它之前我无法替换它(即通过 ReflectionTestUtils)。
我该怎么做?
这是我要测试的课程:
@Component
public final class TestedClass{
@Autowired
private Resource resource;
@PostConstruct
private void init(){
//I need this to return different result
resource.getSomething();
}
}
这是一个测试用例的基础:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations= "classpath:applicationContext.xml")
public class TestedClassTest{
@Autowired
private TestedClass instance;
@Before
private void setUp(){
//this doesn't work because it's executed after the bean is instantiated
ReflectionTestUtils.setField(instance, "resource", new Resource("something"));
}
}
在调用 postconstruct 方法之前,有什么方法可以用其他东西替换资源吗?喜欢告诉 Spring JUnit runner 自动装配不同的实例吗?