Package com.vaadin.browserless
Interface CommercialTesterWrappers
-
- All Implemented Interfaces:
public interface CommercialTesterWrappersProvides factory method to create testers for commercial components.
- Since:
1.0
-
-
Method Summary
Modifier and Type Method Description <V> GridProTester<GridPro<V>, V>test(GridPro<V> grid)Create a tester for the given GridPro instance. <V> GridProTester<GridPro<V>, V>test(GridPro grid, Class<V> itemType)Create a tester for the given GridPro instance. ChartTester<Chart>test(Chart chart)Create a tester for the given Chart instance. DashboardTester<Dashboard>test(Dashboard dashboard)Create a tester for the given Dashboard instance. -
-
Method Detail
-
test
<V> GridProTester<GridPro<V>, V> test(GridPro<V> grid)
Create a tester for the given GridPro instance.
- Parameters:
grid- the GridPro instance to be tested- Returns:
a GridProTester instance wrapping the given GridPro
-
test
<V> GridProTester<GridPro<V>, V> test(GridPro grid, Class<V> itemType)
Create a tester for the given GridPro instance.
- Parameters:
grid- the GridPro instance to be testeditemType- the type of the items in the GridPro- Returns:
a GridProTester instance wrapping the given GridPro
-
test
ChartTester<Chart> test(Chart chart)
Create a tester for the given Chart instance.
- Parameters:
chart- the chart instance to be tested- Returns:
a ChartTester instance wrapping the given chart
-
test
DashboardTester<Dashboard> test(Dashboard dashboard)
Create a tester for the given Dashboard instance.
- Parameters:
dashboard- the dashboard instance to be tested- Returns:
a DashboardTester instance wrapping the given dashboard
- Since:
1.1
-
-
-
-