* Deleted md file as a conflict * [BAEL-4461] - Fixed PMD violation * [BAEL-4461] - Fixed PMD violation * [BAEL-4461] - Ignore empty TC * Fix Spring 5 tests
17 lines
430 B
Java
17 lines
430 B
Java
package org.baeldung.spring;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
|
|
|
|
@Configuration
|
|
@ComponentScan("org.baeldung.test")
|
|
public class ConfigIntegrationTest extends WebMvcConfigurerAdapter {
|
|
|
|
public ConfigIntegrationTest() {
|
|
super();
|
|
}
|
|
|
|
// API
|
|
|
|
} |