blob: 213c1437bd3886cedb0236bf5eae9b66bdfb6904 (
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
|
package com.vaadin.tests.components.ui;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractReindeerTestUI;
import com.vaadin.ui.Label;
import com.vaadin.ui.Window;
public class EmptyWindow extends AbstractReindeerTestUI {
@Override
protected void setup(VaadinRequest request) {
addWindow(new Window("My empty window"));
setContent(new Label("UI"));
}
@Override
protected String getTestDescription() {
return "There should be an empty window on the screen. Currently it should have the min width defined in VWindow";
}
@Override
protected Integer getTicketNumber() {
return 10325;
}
}
|