Methods Summary |
---|
public void | testGenericAjax()
PasswordTag tag = new PasswordTag();
verifyGenericProperties(tag, "ajax", new String[]{"value"});
|
public void | testGenericSimple()
PasswordTag tag = new PasswordTag();
verifyGenericProperties(tag, "simple", new String[]{"value"});
|
public void | testGenericXhtml()
PasswordTag tag = new PasswordTag();
verifyGenericProperties(tag, "xhtml", new String[]{"value"});
|
public void | testSimple()
TestAction testAction = (TestAction) action;
testAction.setFoo("bar");
PasswordTag tag = new PasswordTag();
tag.setPageContext(pageContext);
tag.setLabel("mylabel");
tag.setName("myname");
tag.setTitle("mytitle");
tag.doStartTag();
tag.doEndTag();
verify(PasswordTag.class.getResource("Password-1.txt"));
|