Examples of MissingMessagePage


Examples of org.springframework.springfaces.traveladvisor.integrationtest.page.message.MissingMessagePage

    assertThat(page.getBodyText(), is("San Francisco (California)"));
  }

  @Test
  public void shouldSupportMissingMessage() throws Exception {
    MissingMessagePage page = this.pages.get(MissingMessagePage.class);
    assertThat(page.getOutputText(), is("idontexist"));
    assertThat(page.getErrorMessage(), startsWith("No message found under code 'idontexist' for locale "));
    assertThat(page.getErrorMessage(), endsWith("Attempted to resolve message with the following codes "
        + "'pages.message.missing.idontexist, idontexist'"));
  }
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.