blob: a66f0efe640953db8e1d376f89018f7e2f2e25fa (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
package com.vaadin.tests.components;
import com.vaadin.shared.ui.label.ContentMode;
import com.vaadin.ui.Component;
import com.vaadin.ui.Label;
import com.vaadin.ui.Root.LegacyWindow;
import com.vaadin.ui.VerticalLayout;
public abstract class TestBase extends AbstractTestCase {
@Override
public final void init() {
window = new LegacyWindow(getClass().getName());
setMainWindow(window);
window.getContent().setSizeFull();
Label label = new Label(getDescription(), ContentMode.XHTML);
label.setWidth("100%");
window.getContent().addComponent(label);
layout = new VerticalLayout();
window.getContent().addComponent(layout);
((VerticalLayout) window.getContent()).setExpandRatio(layout, 1);
setup();
}
private LegacyWindow window;
@Override
public void setMainWindow(LegacyWindow mainWindow) {
if (mainWindow != window) {
throw new IllegalStateException(
"You should not set your own main window when using TestBase. If you need to use a custom Window as the main window, use AbstractTestCase instead.");
}
super.setMainWindow(mainWindow);
}
private VerticalLayout layout;
public TestBase() {
}
protected VerticalLayout getLayout() {
return layout;
}
protected abstract void setup();
protected void addComponent(Component c) {
getLayout().addComponent(c);
}
protected void removeComponent(Component c) {
getLayout().removeComponent(c);
}
protected void replaceComponent(Component oldComponent,
Component newComponent) {
getLayout().replaceComponent(oldComponent, newComponent);
}
}
|