保誠-保戶業務員媒合平台
Tomas
2023-08-05 01edfc155a0dcf9d84a78139be6b86b76232f2b4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.pollex.pam;
 
import com.pollex.pam.PamapiApp;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.springframework.boot.test.context.SpringBootTest;
 
/**
 * Base composite annotation for integration tests.
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@SpringBootTest(classes = PamapiApp.class)
public @interface IntegrationTest {
}