1 29 package org.jruby.javasupport.test; 30 31 import junit.framework.Test; 32 import junit.framework.TestSuite; 33 34 public class JavaSupportTestSuite extends TestSuite { 35 36 public static Test suite() { 37 TestSuite suite = new TestSuite(); 38 suite.addTest(new TestSuite(TestBSF.class)); 39 suite.addTest(new TestSuite(TestNativeException.class)); 40 return suite; 41 } 42 } 43 | Popular Tags |