Package org.apache.wicket

Examples of org.apache.wicket.Page.debug()


  public void testHasMessageForComponentInt()
  {
    Session session = tester.setupRequestAndResponse().getSession();
    final Page page = new TestPage_1();
    tester.startPage(page);
    page.debug("debug message");
    page.info("info message");
    page.error("error message");
    Assert.assertTrue(session.getFeedbackMessages().hasMessageFor(page, FeedbackMessage.ERROR));
  }
}
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.