You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ExcludeFromSuite.java 604B

12345678910111213141516171819202122
  1. package com.vaadin.tests.tb3;
  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Inherited;
  4. import java.lang.annotation.Retention;
  5. import java.lang.annotation.RetentionPolicy;
  6. import java.lang.annotation.Target;
  7. /**
  8. * Marker interface for a TB3+ test class which will exclude the test from any
  9. * test suite which automatically scans for test classes. Mostly useful for long
  10. * tests which should not be run in every build.
  11. *
  12. * @since 7.1.10
  13. * @author Vaadin Ltd
  14. */
  15. @Retention(RetentionPolicy.RUNTIME)
  16. @Target(ElementType.TYPE)
  17. @Inherited
  18. public @interface ExcludeFromSuite {
  19. }