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 HtmlHtmlTest extends UIComponentTestCase
33 {
34
35
36
37
38
39 public HtmlHtmlTest(
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(HtmlHtmlTest.class);
60 }
61
62
63
64
65
66
67 public void testAttributeTransparency()
68 {
69
70
71
72 }
73
74
75
76
77 public void testApplyRequestValues()
78 {
79 doTestApplyRequestValues(new HtmlHtml());
80 }
81
82
83
84
85 public void testProcessValidations()
86 {
87 doTestProcessValidations(new HtmlHtml());
88 }
89
90
91
92
93 public void testUpdateModelValues()
94 {
95 doTestUpdateModelValues(new HtmlHtml());
96 }
97
98
99
100
101 public void testInvokeApplication()
102 {
103 HtmlHtml component = new HtmlHtml();
104
105 doTestInvokeApplication(component, null);
106 }
107
108
109
110
111
112
113 public void testRenderResponse() throws IOException
114 {
115 doTestRenderResponse(new HtmlHtml());
116 }
117 }