1 17 18 package org.apache.james.test; 19 20 public class SimpleFileProtocolTest 21 extends AbstractProtocolTest 22 { 23 public SimpleFileProtocolTest( String fileName ) 24 { 25 super( fileName ); 26 } 27 28 public SimpleFileProtocolTest( String fileName, String host, int port ) 29 { 30 super( fileName ); 31 _host = host; 32 _port = port; 33 } 34 35 protected void runTest() throws Throwable  36 { 37 String testFileName = getName() + ".test"; 38 addTestFile( testFileName ); 39 executeTests(); 40 } 41 } 42 | Popular Tags |