Examples of DecorateAllPage


Examples of org.springframework.springfaces.traveladvisor.integrationtest.page.template.DecorateAllPage

    assertThat(page.getDetails(), is("Given Name form:name false true name false"));
  }

  @Test
  public void shouldDecorateAll() throws Exception {
    DecorateAllPage page = this.pages.get(DecorateAllPage.class);
    StringBuffer expected = new StringBuffer();
    expected.append("beforeinsert1after");
    expected.append("globaldefinevalue");
    expected.append("globalparamvalue");
    expected.append("localdefinevalue1");
    expected.append("localparamvalue1");
    expected.append("beforeinsert1after");
    expected.append("globaldefinevalue");
    expected.append("globalparamvalue");
    expected.append("localdefinevalue2");
    expected.append("localparamvalue2");
    assertThat(page.getBodyText().replaceAll("\n", ""), is(expected.toString()));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.