1 24 package org.objectweb.jalisto.test.core.suite; 25 26 import junit.framework.Test; 27 import org.objectweb.jalisto.se.test.workbench.JalistoTestEngine; 28 import org.objectweb.jalisto.se.test.workbench.JalistoTestSuite; 29 30 public class MainTestSuiteRO extends JalistoTestSuite { 31 public static Test suite() { 32 JalistoTestSuite suite = new MainTestSuiteRO(); 33 34 suite.addTest(ReadOnlyTestCase.suite()); 36 37 return suite; 38 } 39 40 public static void main(String [] args) { 41 String lidoProperties = "jlisto.properties"; 42 if (args.length == 1) { 43 lidoProperties = args[0]; 44 } 45 String runtimeArgs[] = {"-v", "-nt", MainTestSuiteRO.class.getName(), "-db", lidoProperties}; 46 JalistoTestEngine.main(runtimeArgs); 47 } 48 49 } 50 | Popular Tags |