Package se.unbound.tapestry.breadcrumbs.mocks

Examples of se.unbound.tapestry.breadcrumbs.mocks.IndexPageWithIgnoreMock


    @Test
    public void dispatcherDoesNotResetBreadCrumbListIfResetAnnotationHasSpecifiedPreviousPageClassAsIgnored()
            throws Exception {
        this.breadCrumbList.add(new BreadCrumbInfo("edit.title", new LinkMock("/edit/2"), "Edit"));
        this.breadCrumbList.add(new BreadCrumbInfo("group"));
        this.addPage("index", new IndexPageWithIgnoreMock());
        this.addPage("group", new GroupPageMock());
        final RequestMock request = new RequestMock("localhost", 80, "/app", "/index/1");
        final Response response = new ResponseMock();
        this.dispatcher.dispatch(request, response);
        assertEquals("list size", 2, this.breadCrumbList.getCrumbsToDisplay().size());
View Full Code Here

TOP

Related Classes of se.unbound.tapestry.breadcrumbs.mocks.IndexPageWithIgnoreMock

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.