Spring:@TestConfiguration

Aus Alexander's Wiki

Annotation der Test-Klasse

@Import(CommentServiceTest.EmployeeServiceImplTestContextConfiguration.class)
    @TestConfiguration
    static class EmployeeServiceImplTestContextConfiguration {

        @Bean
        public CommentMapper employeeService() {
            return new CommentMapper() {
                 // implement methods
            };
        }
        
    }