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