2

我对 Mockito 很陌生,有一个问题。

我正在为我的应用程序使用 Spring 的依赖注入并尝试测试组件。我有一个这样的测试:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(// @formatter:off
    loader = SpringockitoAnnotatedContextLoader.class,
    classes = { TestContext.class }) // @formatter:on
public class TestClass {

@Autowired
private TestBean testBean;

@Test
public void testSomething() {

// do anything
assertTrue(testBean.getClass().getName().equals("TestBean"));
}

}

}

上下文类:

@Configuration
public class TestContext {

@Bean(name = "testBean")
public TestBean getTestBean() {
    return Mockito.mock(TestBean.class);
}

} 

测试豆类:

@Component
public class TestBean {

@Autowired
private AnotherTestBean anotherTestBean;

}

另一个TestBean.class:

@Component
public class AnotherTestBean {

}

现在,如果我运行此代码,我会收到由以下原因引起的错误:

org.springframework.beans.factory.NoSuchBeanDefinitionException:没有为依赖找到[info.imapping.application.configuration.context.AnotherTestBean]类型的合格bean:预计至少有1个bean有资格作为此依赖的自动装配候选者。依赖注解:{@org.springframework.beans.factory.annotation.Autowired(required=true)}

这意味着 Spring 试图将依赖项注入到我的模拟 bean 中。有人可以告诉我如何防止这种行为吗?

如果我@ReplaceWithMock在我的中使用TestClass,它可以工作。但我更喜欢在上下文文件中设置我的模型。

4

1 回答 1

0

您必须anotherTestbean像使用testBean. 当spring尝试放入但spring上下文中没有这样的bean时会发生anotherTestBean错误TestBean

于 2014-10-24T14:23:04.963 回答