@Test
public void testDefaultTagDecorator4() throws Exception
{
Location location = new Location("/test.xhtml", 20, 5);
Tag tag = new Tag(location, DefaultTagDecorator.XHTML_NAMESPACE, "a", "a",
new TagAttributesImpl(new TagAttribute[]
{
new TagAttributeImpl(location, DefaultTagDecorator.JSF_ALIAS_NAMESPACE, "action", "jsf:action", "#{test.testAction}")
}
));
TagDecorator tagDecorator = new DefaultTagDecorator();
Tag decoratedTag = tagDecorator.decorate(tag);
Assert.assertNotNull(decoratedTag);
}