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

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


    assertThat(page.getArgumentText(), is("argument = value"));
  }

  @Test
  public void shouldSupportPostbackWithRequestMapping() throws Exception {
    PostbackRequestMappingPage page = this.pages.get(PostbackRequestMappingPage.class);
    assertThat(page.getCreateDate(), is(not(0L)));
    long date1 = page.getDate();
    Thread.sleep(500);
    page = page.clickPostbackButton();
    assertThat(page.getCreateDate(), is(0L));
    long date2 = page.getDate();
    assertTrue(date1 < date2);
  }
View Full Code Here

TOP

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

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.