1 package civitas; 2 3 import org.springframework.boot.autoconfigure.EnableAutoConfiguration; 4 import org.springframework.context.annotation.ComponentScan; 5 import org.springframework.context.annotation.Configuration; 6 import org.springframework.context.annotation.PropertySource; 7 8 @Configuration 9 @PropertySource("classpath:test.properties") 10 @EnableAutoConfiguration 11 @ComponentScan("civitas") 12 public class AppTestConfig {}