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