1   import junit.framework.Test;
2   import junit.framework.TestCase;
3   import junit.framework.TestSuite;
4   
5   /***
6    * 
7    * @author Christian Stein
8    */
9   public class UberTestCase4 extends TestCase {
10  
11      public static Test suite() {
12          TestSuite suite = new TestSuite("Template and servlet test suite");
13          
14          /*
15           * Groovy text package tests.
16           */
17          suite.addTestSuite(groovy.text.TemplateTest.class);
18          
19          /*
20           * Groovlet and simple template servlet tests.
21           */
22          suite.addTestSuite(groovy.servlet.GroovyServletTest.class);
23          
24          return suite;
25      }
26  
27  }