Package org.springframework.springfaces.traveladvisor.integrationtest.page.converter

Examples of org.springframework.springfaces.traveladvisor.integrationtest.page.converter.GenericSpringBeanConverterPage.clickSubmitButton()


  @Test
  public void shouldSupportGenericSpringBeanConverter() throws Exception {
    GenericSpringBeanConverterPage page = this.pages.get(GenericSpringBeanConverterPage.class);
    page.setInputText("123");
    page = page.clickSubmitButton();
    assertThat(page.getConversionText(), is("Conversion by ID : 123 from genericSpringBeanConverter"));
  }

  @Test
  public void shouldSupportSpringBeanForClass() throws Exception {
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.