1 import junit.framework.Test;
2 import junit.framework.TestCase;
3
4 /***
5 * Collecting all Groovy Unit Tests, written in Java.
6 * @author Christian Stein
7 * @author Dierk Koenig
8 */
9 public class UberTestCase4 extends TestCase {
10
11 public static Test suite() {
12 return AllGroovyJavaTestsSuite.suite();
13 }
14
15
16 }