1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.myfaces.component.html.ext.behavior;
20
21 import javax.faces.component.UIComponent;
22
23 import org.apache.myfaces.component.behavior.AbstractClientBehaviorTestCase;
24 import org.apache.myfaces.component.behavior.HtmlClientEventAttributesUtil;
25 import org.apache.myfaces.component.behavior.HtmlRenderedClientEventAttr;
26 import org.apache.myfaces.component.html.ext.HtmlPanelGroup;
27 import org.junit.Ignore;
28 import org.junit.Test;
29
30
31 public class HtmlPanelGroupSpanClientBehaviorTest extends AbstractClientBehaviorTestCase
32 {
33 private HtmlRenderedClientEventAttr[] attrs = null;
34
35 @Override
36 public void setUp() throws Exception
37 {
38 super.setUp();
39 attrs = HtmlClientEventAttributesUtil.generateClientBehaviorEventAttrs();
40 }
41
42 @Override
43 public void tearDown() throws Exception
44 {
45 super.tearDown();
46 attrs = null;
47 }
48
49 @Override
50 protected UIComponent createComponentToTest()
51 {
52 HtmlPanelGroup component = new HtmlPanelGroup();
53 component.setLayout("span");
54 return component;
55 }
56
57 @Override
58 protected HtmlRenderedClientEventAttr[] getClientBehaviorHtmlRenderedAttributes()
59 {
60 return attrs;
61 }
62
63
64
65
66 @Test
67 @Ignore
68 @Override
69 public void testClientBehaviorHolderRendersName()
70 {
71 super.testClientBehaviorHolderRendersName();
72 }
73 }