我只是跳伞到一个春季项目,他们不相信单元测试。

我正在尝试建立自己的单元测试环境。

我可以知道注释@ContextConfiguration指的是什么吗?

@Repository呢,我似乎无法初始化它。

该文件是什么样子,通常位于何处?

最佳答案

@ContextConfiguration用于确定如何在集成测试中加载和配置,例如在此JUnit测试中:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("/test5.xml")
public class Test5 {
    @Autowired
    ConnectionFactory f1;

    @Test
    public void test() throws Exception {
...

08-04 03:15