@Retention(value=RUNTIME)
@Target(value={TYPE,METHOD})
@Tag(value="slow")
public @interface SlowTest
Slow tests typically are functional test, which may call network API, perform I/O operations, spawn many threads and wait for execution, etc.
This annotation is an alias for Tag("slow")
. Adding the slow
tag on a test
case produces the same effect as adding this annotation.