* BAEL-3828 add code samples and tests for the article * BAEL-3828 fix maven test folder structure and test executions * BAEL-3828 fix indentation in continuation lines
11 lines
312 B
Java
11 lines
312 B
Java
package com.baeldung.annotations.service.config;
|
|
|
|
import org.springframework.boot.test.context.TestConfiguration;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
|
|
@TestConfiguration
|
|
@ComponentScan("com.baeldung.annotations.service.interfaces")
|
|
public class InterfacesAnnotatedTestConfiguration {
|
|
|
|
}
|