1 package org.junitdoclet; 2 3 import junit.framework.TestSuite; 4 5 6 9 16 17 18 public class JunitdocletSuite 19 { 22 25 public static TestSuite suite() { 26 27 TestSuite suite; 28 29 suite = new TestSuite("org.junitdoclet"); 30 31 suite.addTestSuite(org.junitdoclet.PackageListerTest.class); 32 33 34 35 38 return suite; 39 } 40 41 public static void main(String [] args) { 42 junit.textui.TestRunner.run(suite()); 44 } 46 } 47 | Popular Tags |