blob: 07ce8c3ff839c2a45e840c82f2959db77d2a9814 (
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.AbstractTestUI;
import com.vaadin.ui.Label;
import com.vaadin.ui.Window;
public class EmptyWindow extends AbstractTestUI {
@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;
}
}
|