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

Examples of org.springframework.springfaces.traveladvisor.integrationtest.page.requestmapping.VariablesRequestMappingPage


  }

  @Test
  public void shouldGetVariablesRequestMapping() throws Exception {
    String url = "/requestmapping/variables/example?argument=value";
    VariablesRequestMappingPage page = this.pages.get(VariablesRequestMappingPage.class, url);
    assertThat(page.getPathText(), is("path = example"));
    assertThat(page.getArgumentText(), is("argument = value"));
  }
View Full Code Here

TOP

Related Classes of org.springframework.springfaces.traveladvisor.integrationtest.page.requestmapping.VariablesRequestMappingPage

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.