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.html;
20
21 import java.io.IOException;
22
23 import junit.framework.Test;
24 import junit.framework.TestSuite;
25
26 import org.apache.myfaces.trinidad.component.UIComponentTestCase;
27
28
29
30
31
32 public class HtmlTableLayoutTest extends UIComponentTestCase
33 {
34
35
36
37
38
39 public HtmlTableLayoutTest(
40 String testName)
41 {
42 super(testName);
43 }
44
45 @Override
46 protected void setUp() throws Exception
47 {
48 super.setUp();
49 }
50
51 @Override
52 protected void tearDown() throws Exception
53 {
54 super.tearDown();
55 }
56
57 public static Test suite()
58 {
59 return new TestSuite(HtmlTableLayoutTest.class);
60 }
61
62
63
64
65 public void testInitialAttributeValues()
66 {
67 HtmlTableLayout component = new HtmlTableLayout();
68 assertTrue(component.isRendered());
69 }
70
71
72
73
74
75
76 public void testAttributeTransparency()
77 {
78 HtmlTableLayout component = new HtmlTableLayout();
79
80 doTestAttributeTransparency(component, "borderWidth",
81 new Integer(1), new Integer(2));
82 doTestAttributeTransparency(component, "cellPadding",
83 new Integer(1), new Integer(2));
84 doTestAttributeTransparency(component, "cellSpacing",
85 new Integer(1), new Integer(2));
86 doTestAttributeTransparency(component, "halign",
87 "left", "right");
88 doTestAttributeTransparency(component, "summary",
89 "simple", "complex");
90 doTestAttributeTransparency(component, "width",
91 "50%", "100%");
92 }
93
94
95
96
97
98
99 public void testFacetTransparency()
100 {
101
102 }
103
104
105
106
107 public void testApplyRequestValues()
108 {
109 HtmlTableLayout component = new HtmlTableLayout();
110 doTestApplyRequestValues(component);
111 }
112
113
114
115
116 public void testProcessValidations()
117 {
118 HtmlTableLayout component = new HtmlTableLayout();
119 doTestProcessValidations(component);
120 }
121
122
123
124
125 public void testUpdateModelValues()
126 {
127 HtmlTableLayout component = new HtmlTableLayout();
128 doTestUpdateModelValues(component);
129 }
130
131
132
133
134 public void testInvokeApplication()
135 {
136 HtmlTableLayout component = new HtmlTableLayout();
137 doTestInvokeApplication(component, null);
138 }
139
140
141
142
143
144
145 public void testRenderResponse() throws IOException
146 {
147 HtmlTableLayout component = new HtmlTableLayout();
148 doTestRenderResponse(component);
149 }
150 }