1 30 31 package org.apache.commons.httpclient; 32 33 34 54 public abstract class TestWebappBase extends TestLocalHostBase { 55 56 private String context = System.getProperty("httpclient.test.webappContext","httpclienttest"); 57 58 public TestWebappBase(String testName) { 59 super(testName); 60 } 61 62 public String getWebappContext() { 63 return context; 64 } 65 66 } 67 68 | Popular Tags |