我想在我的 jUnit 5 测试类中使用
@SpringBootTest
@RunWith(JUnitPlatform.class)
@ActiveProfiles("localtest")
class WorkreportDbRepositoryTest {
@Autowired
private SystemPriceSettingService systemPriceSettingService;
// the rest omitted ....
}
在配置中为测试环境创建的bean:
@Profile("localtest")
@Configuration
public class TestConfig {
@Bean
public SystemPriceSettingService systemPriceSettingService(){
return new MemoryPriceSettingService();
}
}
但是未注入了SystemPriceSettingService
bean。我的设置有什么问题?
答案 0 :(得分:0)
您不会使用Spring知道的JUnit Runner。因此没有创建Spring上下文。
您应该将其替换为测试类上的注释,例如:
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.test.context.junit.jupiter.SpringExtension;
@SpringBootTest
@ExtendWith(SpringExtension.class)
@ActiveProfiles("localtest")
class WorkreportDbRepositoryTest { ...}
并添加此依赖项以能够使用SpringExtension
:
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>2.18.0</version> <!-- your mockito version-->
<scope>test</scope>
</dependency>