1 22 package test.serialization; 23 24 import junit.framework.Test; 25 import junit.framework.TestSuite; 26 27 32 33 public class SerializationSUITE extends TestSuite 34 { 35 public static void main(String [] args) 36 { 37 junit.textui.TestRunner.run(suite()); 38 } 39 40 public static Test suite() 41 { 42 TestSuite suite = new TestSuite("All Serialization Tests"); 43 44 try 45 { 46 47 suite.addTest(org.jboss.test.jmx.serialization.SerializationSUITE.suite()); 48 } 49 catch (Exception e) 50 { 51 e.printStackTrace(); 52 throw new RuntimeException (e.toString()); 53 } 54 55 return suite; 56 } 57 } 58 | Popular Tags |