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

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

Introduction

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

Prototype

NestedPathTag

Source Link

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 www  .j av  a 2  s . com*/

    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");
}