Example usage for org.springframework.web.servlet.tags NestedPathTag setPath

List of usage examples for org.springframework.web.servlet.tags NestedPathTag setPath

Introduction

In this page you can find the example usage for org.springframework.web.servlet.tags NestedPathTag setPath.

Prototype

public void setPath(@Nullable String path) 

Source Link

Document

Set the path that this tag should apply.

Usage

From source file:org.hdiv.web.servlet.tags.form.InputTagTests.java

public void testWithNestedBind() throws Exception {
    NestedPathTag nestedPathTag = new NestedPathTag();
    nestedPathTag.setPath("spouse.");
    nestedPathTag.setPageContext(getPageContext());
    nestedPathTag.doStartTag();/*from   ww  w.ja  v a2s.  c o m*/

    this.tag.setPath("name");

    assertEquals(Tag.SKIP_BODY, this.tag.doStartTag());

    String output = getWriter().toString();

    assertTagOpened(output);
    assertTagClosed(output);

    assertContainsAttribute(output, "type", getType());
    assertValueAttribute(output, "Sally");
}