01: package org.obe.test.internal;
02:
03: import junit.framework.Test;
04: import org.apache.commons.logging.Log;
05: import org.apache.commons.logging.LogFactory;
06: import org.obe.client.api.WMClientFactory;
07: import org.obe.test.WMClientTest;
08:
09: /**
10: * Internal test for the J2EE-LOCAL client implementation.
11: *
12: * @author Adrian Price
13: */
14: public class J2EELocalClientTest extends WMClientTest {
15: private static final Log _logger = LogFactory
16: .getLog(J2EELocalClientTest.class);
17:
18: public static Test suite() {
19: return cactusSuite(J2EELocalClientTest.class, TESTS);
20: }
21:
22: public J2EELocalClientTest(String name) {
23: super (name, WMClientFactory.J2EE_LOCAL);
24: }
25:
26: protected Log getLogger() {
27: return _logger;
28: }
29: }
|