1 package com.openedit.archive.cumulus; 2 3 import junit.framework.Test; 4 import junit.framework.TestSuite; 5 6 public class AllTests 7 { 8 9 public static Test suite() 10 { 11 TestSuite suite = new TestSuite( "Test for com.openedit.store.cumulus" ); 12 suite.addTestSuite( CumulusConvertTest.class ); 14 suite.addTestSuite( HexToBinaryConverterTest.class ); 15 17 return suite; 19 } 20 21 } 22 | Popular Tags |