[TEST] Specify usage restrictions for @SuiteScopeTestCase, @SuppressLocalMode and @SuppressNetworkMode
Closes #14477
This commit is contained in:
parent
044b3d59cd
commit
56f543734e
|
@ -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 {
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue