@Target(value={TYPE,METHOD}) @Retention(value=RUNTIME) @Documented @EnabledIfEnvironmentVariable(named="TEST_SLOW_ENABLED", matches="(?i)true") @Test public @interface SlowTest
@SlowTest is used to signal that the annotated test class or test method is slow running
and will be disabled unless enabled via setting the TEST_SLOW_ENABLED environment
variable to true.