1 9 package org.enhydra.barracuda.testbed; 10 11 import junit.framework.*; 12 import org.apache.log4j.*; 13 import org.apache.log4j.xml.*; 14 15 16 20 public class DefaultTestCase extends TestCase { 21 public static String testClass = DefaultTestCase.class.getName(); 23 public static Logger logger = Logger.getLogger("test."+testClass); 24 25 public final static String TEST_SUITE_USER = "TestSuiteUser"; 27 28 32 public DefaultTestCase(String name) { 33 super(name); 34 } 35 36 37 42 static { 43 DOMConfigurator.configure("../WEB-INF/log4j.xml"); 45 } 46 47 } 48 | Popular Tags |