~ubuntu-branches/ubuntu/wily/libjboss-remoting-java/wily

« back to all changes in this revision

Viewing changes to src/tests/org/jboss/test/remoting/transport/http/compression/CompressedHTTPInvokerTestCase.java

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: package-import@ubuntu.com-20110909140103-hqokx61534tas9rg
Tags: 2.5.3.SP1-1
* Newer but not newest upstream release. Do not build samples.
* Change debian/watch to upstream's svn repo.
* Add patch to fix compile error caused by tomcat update.
  (Closes: #628303)
* Switch to source format 3.0.
* Switch to debhelper level 7.
* Remove useless Depends.
* Update Standards-Version: 3.9.2.
* Update README.source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.jboss.test.remoting.transport.http.compression;
 
2
 
 
3
import org.jboss.test.remoting.transport.InvokerTestDriver;
 
4
 
 
5
/**
 
6
 * This should be used as the main test case for the invoker client/server.
 
7
 * It will start one instance of the client and one of the server and will
 
8
 * gather the test results and report them in standard JUnit format.  When
 
9
 * wanting to run JUnit test for invoker, this is the class to use.
 
10
 *
 
11
 * @author <a href="mailto:telrod@e2technologies.net">Tom Elrod</a>
 
12
 */
 
13
public class CompressedHTTPInvokerTestCase extends InvokerTestDriver
 
14
{
 
15
   public void declareTestClasses()
 
16
   {
 
17
      addTestClasses(CompressedHTTPInvokerTestClient.class.getName(),
 
18
                     1,
 
19
                     CompressedHTTPInvokerTestServer.class.getName());
 
20
   }
 
21
}