1 18 19 package org.apache.struts.upload; 20 21 import junit.framework.Test; 22 import junit.framework.TestSuite; 23 24 public class MultipartTestSuite extends TestSuite { 25 26 public static final void main(String args[]) { 27 junit.textui.TestRunner.run(MultipartTestSuite.suite()); 28 System.exit(0); 29 } 30 31 public static Test suite() { 32 TestSuite suite = new MultipartTestSuite(); 33 suite.addTest(new TestSuite(MultipartBoundaryInputStreamTest.class)); 34 35 return suite; 36 } 37 38 } 39 | Popular Tags |