Annotation Type PerformanceTest


  • @Target(TYPE)
    @Retention(RUNTIME)
    @Documented
    public @interface PerformanceTest

    The @PerformanceTest annotation is provided for marking tests which will be executed in a different way, for example 10 times in a row. To execute it 10 times in a row for example write @PerformanceTest(executions = 10).

    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      int executions
      Repeats the whole test-class -times
    • Element Detail

      • executions

        int executions
        Repeats the whole test-class -times
        Default:
        1