1 7 package org.jboss.test.remoting.marshall.dynamic.local; 8 9 import org.apache.log4j.Level; 10 import org.jboss.jrunit.harness.TestDriver; 11 12 20 21 public class MarshallerLoadingTestCase extends TestDriver 22 { 23 29 protected String getExtendedServerClasspath() 30 { 31 return System.getProperty("loader.path"); 32 } 33 34 40 protected String getExtendedClientClasspath() 41 { 42 return System.getProperty("loader.path"); 43 } 44 45 public void declareTestClasses() 46 { 47 addTestClasses(MarshallerLoadingClient.class.getName(), 48 1, 49 MarshallerLoadingServer.class.getName()); 50 } 51 52 protected Level getTestHarnessLogLevel() 53 { 54 return Level.DEBUG; 55 } 56 57 58 } | Popular Tags |