1   /*
2    * Created on 2004/10/15
3    */
4   package org.apache.velocity.tools.generic.introspection;
5   
6   import junit.framework.Test;
7   import junit.framework.TestSuite;
8   
9   /***
10   * @author shinobu
11   */
12  public class AllTests {
13  
14      public static Test suite() {
15          TestSuite suite = new TestSuite(
16                  "Test for org.ieee.shinobu.demo.velocity.introspection");
17          //$JUnit-BEGIN$
18          suite.addTestSuite(PublicFieldUberspectTest.class);
19          //$JUnit-END$
20          return suite;
21      }
22  }