保誠-保戶業務員媒合平台
HelenHuang
2022-04-19 9b3a210c3635575c4c2771ca36dfb024c83efe14
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 {
}