Annotation Type LongRunning


  • @ExtendWith(LongRunningIntegrationTestCondition.class)
    @Target(TYPE)
    @Retention(RUNTIME)
    @Documented
    public @interface LongRunning
    Test classes annotated with this will not run if an environment variable or system property (default RUN_LONG_INTEGRATION_TESTS) is not present or does not have the value that Boolean.parseBoolean(String) evaluates to true.
    Since:
    2.0.2
    Author:
    Gary Russell
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      java.lang.String value
      The name of the variable/property used to determine whether long runnning tests should run.
    • Element Detail

      • value

        java.lang.String value
        The name of the variable/property used to determine whether long runnning tests should run.
        Returns:
        the name of the variable/property.
        Default:
        "RUN_LONG_INTEGRATION_TESTS"