1 21 22 package org.apache.derby.impl.drda; 23 24 25 29 30 public class TestFile{ 31 32 33 private TestFile() {} 35 36 37 40 public static void main(String [] args) { 41 42 if (args.length != 1) 43 { 44 System.err.println ("Usage: testFile <filename>"); 45 System.exit(1); 46 } 47 executeFile(args[0]); 48 } 49 54 public static void executeFile(String filename) 55 { 56 TestProto t = new TestProto(filename); 57 } 58 } 59 | Popular Tags |