01: package org.obe.test.server;
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: * Remote test for the RMI client implementation.
11: *
12: * @author Adrian Price
13: */
14: public class RMIClientTest extends WMClientTest {
15: private static final Log _logger = LogFactory
16: .getLog(RMIClientTest.class);
17:
18: public static Test suite() {
19: return junitSuite(RMIClientTest.class, TESTS);
20: }
21:
22: public RMIClientTest(String name) {
23: super (name, WMClientFactory.RMI);
24: }
25:
26: protected Log getLogger() {
27: return _logger;
28: }
29: }
|