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.

LimitedTB3TestsComponentsGridOnly.java 880B

123456789101112131415161718192021222324252627282930
  1. package com.vaadin.tests.tb3;
  2. import java.io.IOException;
  3. import org.junit.runner.RunWith;
  4. import org.junit.runners.model.InitializationError;
  5. import com.vaadin.tests.tb3.LimitedTB3TestsComponentsGridOnly.LimitedTB3TestsComponentsGridOnlySuite;
  6. /**
  7. * Test consisting of all TB3 tests within package
  8. * com.vaadin.tests.components.grid (classes extending AbstractTB3Test).
  9. *
  10. * @author Vaadin Ltd
  11. */
  12. @RunWith(LimitedTB3TestsComponentsGridOnlySuite.class)
  13. public class LimitedTB3TestsComponentsGridOnly {
  14. public static class LimitedTB3TestsComponentsGridOnlySuite
  15. extends TB3TestSuite {
  16. public LimitedTB3TestsComponentsGridOnlySuite(Class<?> klass)
  17. throws InitializationError, IOException {
  18. super(klass, AbstractTB3Test.class,
  19. "com.vaadin.tests.components.grid", new String[] {});
  20. }
  21. }
  22. }