blob: 64803fef8eec877cc488aa80759fc63e28d0f2b5 (
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
|
package com.vaadin.tests.components.datefield;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractReindeerTestUI;
import com.vaadin.tests.components.TestDateField;
import com.vaadin.ui.AbstractLocalDateField;
public class DateFieldClose extends AbstractReindeerTestUI {
static final String DATEFIELD_ID = "datefield";
@Override
protected void setup(VaadinRequest request) {
final AbstractLocalDateField df = new TestDateField();
df.setId(DATEFIELD_ID);
addComponent(df);
}
@Override
protected String getTestDescription() {
return "A click on the button should open a calendar and a second click should close it.";
}
@Override
protected Integer getTicketNumber() {
return 14086;
}
}
|