Examples of JamonAdminPage


Examples of org.wicketstuff.jamon.web.JamonAdminPage

    public HomePage() {
        add(new Link("toStatisticsPage") {

            @Override
            public void onClick() {
                setResponsePage(new JamonAdminPage(100));
            }
        });
        add(new Link("toAjaxPage") {
           
            @Override
View Full Code Here

Examples of org.wicketstuff.jamon.web.JamonAdminPage

    }
   
    @Test
    public void shouldRenderStatisticsPageWithOneMonitor() {
        JamonTestUtil.startThisManyMonitors(1);
        wicketTester.startPage(new JamonAdminPage());
        wicketTester.assertRenderedPage(JamonAdminPage.class);
    }
View Full Code Here

Examples of org.wicketstuff.jamon.web.JamonAdminPage

        wicketTester.assertRenderedPage(JamonAdminPage.class);
    }
    @Test
    public void shouldRenderStatisticsPageWithTwoMonitors() {
        JamonTestUtil.startThisManyMonitors(2);
        wicketTester.startPage(new JamonAdminPage());
        wicketTester.assertRenderedPage(JamonAdminPage.class);
    }
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.