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

Examples of org.springframework.springfaces.traveladvisor.integrationtest.page.converter.GenericSpringBeanConverterPage


    assertThat(page.getBodyText(), is("Conversion by ID : 123 from springBeanConverter"));
  }

  @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"));
  }
View Full Code Here

TOP

Related Classes of org.springframework.springfaces.traveladvisor.integrationtest.page.converter.GenericSpringBeanConverterPage

Copyright © 2018 www.massapicom. 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.