What am I doing wrong? I'm using this little standalone App which runs and finds my src/main/resources/config/application.yml. The same configuration doesn't work from JUnit, see below:
@Configuration
@ComponentScan
@EnableConfigurationProperties
public class TestApplication {
    public static void main(String[] args) {
        SpringApplication.run(TestApplication.class);
    }
}
@Component
@ConfigurationProperties
public class Bean{
    ...
}
The following doesn't work, the same properties in application.yml are not loaded and Bean has only null values:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = TestApplication.class)
public class SomeTestClass {
    ...
}
 
     
     
     
     
     
     
     
     
     
     
     
     
    