1 package org.apache.ojb.broker.sqlcount; 2 3 17 18 import junit.framework.Test; 19 import junit.framework.TestSuite; 20 21 27 public class AllTests 28 { 29 32 public static void main(String [] args) 33 { 34 String [] arr = {AllTests.class.getName()}; 35 junit.textui.TestRunner.main(arr); 36 } 37 38 39 public static Test suite() 40 { 41 TestSuite suite = new TestSuite(); 42 suite.addTest(new TestSuite(CollectionCountTest.class)); 43 suite.addTest(new TestSuite(SimpleCountTest.class)); 44 suite.addTest(new TestSuite(EmptyCacheCountTest.class)); 45 return suite; 46 } 47 } 48 | Popular Tags |