18 lines
492 B
Java
18 lines
492 B
Java
|
package org.datasurvey;
|
||
|
|
||
|
import java.lang.annotation.ElementType;
|
||
|
import java.lang.annotation.Retention;
|
||
|
import java.lang.annotation.RetentionPolicy;
|
||
|
import java.lang.annotation.Target;
|
||
|
import org.datasurvey.DataSurveyApp;
|
||
|
import org.springframework.boot.test.context.SpringBootTest;
|
||
|
|
||
|
/**
|
||
|
* Base composite annotation for integration tests.
|
||
|
*/
|
||
|
@Target(ElementType.TYPE)
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
@SpringBootTest(classes = DataSurveyApp.class)
|
||
|
public @interface IntegrationTest {
|
||
|
}
|