保誠-保戶業務員媒合平台
Tomas
2021-11-30 5ca8f6e6e554696cb8add0fc91396b2d905b0d7a
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 {
}