1 16 17 package org.apache.tomcat.jni; 18 19 import junit.framework.Test; 20 import junit.framework.TestSuite; 21 import junit.textui.TestRunner; 22 23 30 public class FileTestSuite 31 { 32 33 public static void main(String [] args) { 34 TestRunner.run(suite()); 35 } 36 37 public static Test suite() 38 { 39 TestSuite suite = new TestSuite( "Tomcat Native File IO" ); 40 return suite; 41 } 42 } 43 | Popular Tags |