KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > remoting > transport > socket > ssl > basic > InvokerTestCase


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.test.remoting.transport.socket.ssl.basic;
8
9 import org.apache.log4j.Level;
10 import org.jboss.jrunit.harness.TestDriver;
11
12
13 /**
14  * This should be used as the main test case for the invoker client/server.
15  * It will start one instance of the client and one of the server and will
16  * gather the test results and report them in standard JUnit format. When
17  * wanting to run JUnit test for invoker, this is the class to use.
18  *
19  * @author <a HREF="mailto:telrod@e2technologies.net">Tom Elrod</a>
20  */

21 public class InvokerTestCase extends TestDriver
22 {
23    public void declareTestClasses()
24    {
25       addTestClasses(InvokerClientTest.class.getName(),
26                      1,
27                      InvokerServerTest.class.getName());
28    }
29
30    protected Level getTestHarnessLogLevel()
31    {
32       return Level.DEBUG;
33    }
34
35
36 }
Popular Tags