1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.myfaces.trinidad.component.core.layout;
20
21 import junit.framework.Test;
22 import junit.framework.TestSuite;
23 import junit.textui.TestRunner;
24
25 import org.apache.myfaces.trinidad.component.UIXPanel;
26
27
28
29
30
31 public class CorePanelBorderLayoutTest extends UIXPanelTestCase
32 {
33
34
35
36
37
38 public CorePanelBorderLayoutTest(
39 String testName)
40 {
41 super(testName);
42 }
43
44 @Override
45 protected void setUp() throws Exception
46 {
47 super.setUp();
48 }
49
50 @Override
51 protected void tearDown() throws Exception
52 {
53 super.tearDown();
54 }
55
56 public static Test suite()
57 {
58 return new TestSuite(CorePanelBorderLayoutTest.class);
59 }
60
61
62
63
64 public void testInitialAttributeValues()
65 {
66 CorePanelBorderLayout component = new CorePanelBorderLayout();
67 assertEquals(true, component.isRendered());
68 }
69
70
71
72
73
74
75 public void testAttributeTransparency()
76 {
77 CorePanelBorderLayout component = new CorePanelBorderLayout();
78
79 doTestAttributeTransparency(component, "rendered",
80 Boolean.TRUE, Boolean.FALSE);
81 }
82
83
84
85
86
87
88 public void testFacetTransparency()
89 {
90 CorePanelBorderLayout component = new CorePanelBorderLayout();
91
92 doTestFacetTransparency(component, CorePanelBorderLayout.TOP_FACET);
93 doTestFacetTransparency(component, CorePanelBorderLayout.BOTTOM_FACET);
94 doTestFacetTransparency(component, CorePanelBorderLayout.LEFT_FACET);
95 doTestFacetTransparency(component, CorePanelBorderLayout.RIGHT_FACET);
96 doTestFacetTransparency(component, CorePanelBorderLayout.START_FACET);
97 doTestFacetTransparency(component, CorePanelBorderLayout.END_FACET);
98 }
99
100 @Override
101 protected UIXPanel createTestComponent()
102 {
103 return new CorePanelBorderLayout();
104 }
105
106 public static void main(String[] args)
107 {
108 TestRunner.run(CorePanelBorderLayoutTest.class);
109 }
110 }