我想在我的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();
}
}
但是SystemPriceSettingServicebean没有被注入。我的设置有什么问题?
长风秋雁
相关分类