use of org.apache.wicket.resource.DummyApplication in project wicket by apache.
the class CustomHomePageTest method defaultHomePage.
/**
* Tests no custom home page. The home page is get from {@link Application#getHomePage()}
*/
@Test
public void defaultHomePage() {
final WebApplication dummyApplication = new DummyApplication();
final WicketTester tester = new WicketTester(dummyApplication);
requestHomePage(tester);
tester.assertRenderedPage(dummyApplication.getHomePage());
tester.destroy();
}
Aggregations