1

将 Spring boot 1.4 与黄瓜一起使用时,不会注入 @Autowired bean。

但是当我使用普通的 Junit 测试时,它们被正确注入了!我看过这里,但它并没有解决我的问题。

@SpringBootApplication
@EnableSwagger2
@ComponentScan("org.services")
public class ServicesApplication {

    public static void main(String[] args) {
        SpringApplication.run(ServicesApplication.class, args);
    }
}


@RunWith(Cucumber.class)
public class UsersTest {

}

@RunWith(SpringRunner.class)
@SpringBootTest
public class UsersSteps {

    @Autowired
    private UsersService _target;//null
}

编辑:为了澄清一下,我确实使用 Spring Boot 1.4 查看了 Cucumber:使用 @SpringBootTest 和 @RunWith(SpringRunner.class) 时未注入依赖项并添加 此注释

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = Application.class, loader = SpringApplicationContextLoader.class)

没用

然后我把这些注释(如答案)

@ContextConfiguration
@SpringBootTest

也没有用

4

1 回答 1

1

固定的

在 pom.xml 中

 <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-spring</artifactId>
            <version>${cucumber-junit.version}</version>
            <scope>test</scope>
</dependency>

在 UsersSteps 类中

    @SpringBootTest
    @ContextConfiguration(classes = {ServicesApplication.class})
    @TestPropertySource(locations = "classpath:test.properties")
    public class UsersSteps 
于 2016-08-30T07:18:28.600 回答