我正在尝试使用Mockito编写一个单元测试用例,我想注入一个带有真实参数而不是模拟参数的bean。

该bean具有一些从.properties文件读取的字符串值。

@Component
public class SomeParameters {

    @Value("${use.queue}")
    private String useQueue;

 }

@RunWith(MockitoJUnitRunner.class)
public class ServiceTest {

    @Mock
    private A a;

    @Autowired
    private SomeParameters someParameters;

    @Before
    public void init() {
        MockitoAnnotations.initMocks(this);

    }

    @Test
    public void testMethod() {
        if(someParameters.getUseQueue==true){
            //do something
        }else{
            /bla bla
        }
    }


我的主要目标是在真实场景下运行测试用例。我不想使用模拟值。

我能够以这种方式注入具有真实参数的bean。但这是单元测试用例,而不是集成测试。所以我不应该给applicationContext。您能指导我如何处理这种情况吗?

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"classpath:applicationContextTest.xml"})
public class ServiceTest {

最佳答案

如果要使用spring-context,则应为测试创建配置(通过xml或java config),并仅声明所需的bean。 For Example

对于设置属性,只需声明@TestPropertiesSource("use.queue=someValue"),否则您需要从测试资源中读取值。

PS。还要检查@MockBean and @SpyBean特别是@SpyBean

10-06 13:00