1 17 18 package org.apache.geronimo.axis; 19 20 import java.io.File ; 21 22 import org.apache.geronimo.testsupport.TestSupport; 23 24 29 public abstract class AbstractTestCase 30 extends TestSupport 31 { 32 protected String testDir = "src/main/test/"; 33 protected String sampleDir = "src/main/test/samples/"; 34 protected String outDir = "target/generated/samples/"; 35 protected String tempDir = "target/generated/temp"; 36 37 40 public AbstractTestCase(String testName) { 41 super(testName); 42 43 testDir = new File (BASEDIR, testDir).getAbsolutePath(); 44 sampleDir = new File (BASEDIR, sampleDir).getAbsolutePath(); 45 outDir = new File (BASEDIR, outDir).getAbsolutePath(); 46 tempDir = new File (BASEDIR, tempDir).getAbsolutePath(); 47 } 48 49 54 public String getTestFile(String path) { 55 return new File (BASEDIR, path).getAbsolutePath(); 56 } 57 58 public void testDummy() throws Exception { 59 } 61 } 62 63 | Popular Tags |