01: package org.objectweb.celtix.systest.common;
02:
03: import junit.framework.TestCase;
04:
05: import org.objectweb.celtix.bus.jaxws.spi.ProviderImpl;
06:
07: public abstract class ClientServerTestBase extends TestCase {
08:
09: static {
10: System.setProperty(ProviderImpl.JAXWSPROVIDER_PROPERTY,
11: ProviderImpl.JAXWS_PROVIDER);
12: }
13:
14: protected ClientServerTestBase() {
15: }
16:
17: protected ClientServerTestBase(String name) {
18: super(name);
19: }
20:
21: }
|