[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
1 changed files with 3 additions and 0 deletions

View File

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