Package org.wicketstuff.console.examples.groovy

Examples of org.wicketstuff.console.examples.groovy.GroovyEngineWithTemplatesWindowTestPage


      private static final long serialVersionUID = 1L;

      @Override
      public void onClick()
      {
        setResponsePage(new GroovyEngineWithTemplatesWindowTestPage(
          new HibernateScriptTemplateStore()));
      }

    };
    addLink(r, link, GroovyEngineWithTemplatesWindowTestPage.class.getSimpleName());
View Full Code Here


  @Test
  public void test_rendersSuccessfully_GroovyEngineWithTemplatesWindowTestPage()
  {
    clazz = GroovyEngineWithTemplatesWindowTestPage.class;
    final GroovyEngineWithTemplatesWindowTestPage page = (GroovyEngineWithTemplatesWindowTestPage)tester.startPage(clazz);
    tester.assertRenderedPage(clazz);

    tester.clickLink(page.getOpenLink());
    tester.assertComponentOnAjaxResponse("window");
  }
View Full Code Here

TOP

Related Classes of org.wicketstuff.console.examples.groovy.GroovyEngineWithTemplatesWindowTestPage

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.