[TEST] Specify usage restrictions for @SuiteScopeTestCase, @SuppressLocalMode and @SuppressNetworkMode

Closes #14477
This commit is contained in:
Yannick Welsch 2015-11-16 14:31:07 +01:00
parent 044b3d59cd
commit 56f543734e

View File

@ -2096,6 +2096,7 @@ public abstract class ESIntegTestCase extends ESTestCase {
*/ */
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
@Inherited @Inherited
@Target(ElementType.TYPE)
public @interface SuiteScopeTestCase { public @interface SuiteScopeTestCase {
} }
@ -2104,6 +2105,7 @@ public abstract class ESIntegTestCase extends ESTestCase {
*/ */
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
@Inherited @Inherited
@Target(ElementType.TYPE)
public @interface SuppressLocalMode { public @interface SuppressLocalMode {
} }
@ -2112,6 +2114,7 @@ public abstract class ESIntegTestCase extends ESTestCase {
*/ */
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
@Inherited @Inherited
@Target(ElementType.TYPE)
public @interface SuppressNetworkMode { public @interface SuppressNetworkMode {
} }