blob: 2913c64a9826d34c8c1bd29439dbb94578883ec7 (
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
65
66
67
68
69
70
71
|
package com.vaadin.tests.components.button;
import com.vaadin.tests.components.ComponentTestCase;
import com.vaadin.tests.util.LoremIpsum;
import com.vaadin.ui.Button;
import com.vaadin.ui.NativeButton;
public class Buttons extends ComponentTestCase<Button> {
@Override
protected Class<Button> getTestClass() {
return Button.class;
}
@Override
protected void initializeComponents() {
Button l;
for (boolean nat : new boolean[] { false, true }) {
l = createButton("This is an undefined wide button", nat);
l.setWidth(null);
addTestComponent(l);
l = createButton(
"This is an undefined wide button with fixed 100px height",
nat);
l.setWidth(null);
l.setHeight("100px");
addTestComponent(l);
l = createButton(
"This is a 200px wide simple button with a much longer caption",
nat);
l.setWidth("200px");
addTestComponent(l);
l = createButton(
"This is a 100% wide simple button " + LoremIpsum.get(1500),
nat);
l.setWidth("100%");
addTestComponent(l);
l = createButton(
"This is a 100% wide button with fixed 65px height. "
+ LoremIpsum.get(5000),
nat);
l.setWidth("100%");
l.setHeight("65px");
addTestComponent(l);
}
}
private Button createButton(String text, boolean nativeButton) {
Button b;
if (nativeButton) {
b = new NativeButton(text);
} else {
b = new Button(text);
}
return b;
}
@Override
protected String getTestDescription() {
return "A generic test for Buttons in different configurations";
}
}
|