我正在为我的 spring 应用程序编写一些 junit 测试。下面是我实现 InitializingBean 接口的应用程序,
public class InitializeFramework implements InitializingBean {
@Override
public void afterPropertiesSet() throws Exception {
try {
} catch (Exception e) {
}
}
}
现在我想afterPropertiesSet
从我的 junit 测试中调用方法,但不知何故,我无法理解这样做的正确方法是什么?我想,我可以使用反射来调用这个方法,但我不认为,这是一个正确的方法吗?
谁能给我一个简单的例子来说明如何编写一个简单的junit测试来测试类afterPropertiesSet
中的方法InitializeFramework
?