blob: cce6e778b400bda4157b1c839703a5578569b9f9 (
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
|
package com.vaadin.tests.components.ui;
import com.vaadin.annotations.Widgetset;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractReindeerTestUI;
import com.vaadin.tests.widgetset.TestingWidgetSet;
import com.vaadin.tests.widgetset.client.CustomUIConnectorRpc;
@Widgetset(TestingWidgetSet.NAME)
public class CustomUITest extends AbstractReindeerTestUI {
@Override
protected void setup(VaadinRequest request) {
getRpcProxy(CustomUIConnectorRpc.class).test();
}
@Override
protected String getTestDescription() {
return "It should be possible to change the implementation of the UIConnector class";
}
@Override
protected Integer getTicketNumber() {
return Integer.valueOf(10867);
}
}
|