Package org.jboss.wsf.test

Examples of org.jboss.wsf.test.JBossWSTestSetup


   private static DataHandler data = new DataHandler("Client data", "text/plain");

   public static Test suite()
   {
      return new JBossWSTestSetup(SWARefTestCase.class, "jaxws-samples-swaref.jar");
   }
View Full Code Here


   {
      String archives = "jaxws-samples-serviceref.war";
      if (new JBossWSTestHelper().isTargetJBoss5OrGreater())
         archives += ",jaxws-samples-serviceref-client.jar";
     
      return new JBossWSTestSetup(ServiceRefClientTestCase.class, archives);
   }
View Full Code Here

public class EarTestCase extends JBossWSTest
{
   public static Test suite()
   {
      String earName = (new JBossWSTestHelper().isTargetJBoss5OrGreater() ? "jaxws-samples-eardeployment.ear" : "jaxws-samples-eardeployment42.ear");
      return new JBossWSTestSetup(EarTestCase.class, earName);
   }
View Full Code Here

{
   public final String TARGET_ENDPOINT_ADDRESS = "http://" + getServerHost() + ":8080/jaxws-securityDomain";

   public static Test suite()
   {
      return new JBossWSTestSetup(SecurityDomainTestCase.class, new JBossWSTestHelper().isTargetJBoss5OrGreater() ? "jaxws-samples-securityDomain-as5.jar" : "jaxws-samples-securityDomain.jar");
   }
View Full Code Here

{
   private static final String targetNS = "http://oneway.samples.jaxws.ws.test.jboss.org/";

   public static Test suite()
   {
      return new JBossWSTestSetup(OneWayTestCase.class, "jaxws-samples-oneway.war");
   }
View Full Code Here

  
   private static CustomerService port;

   public static Test suite()
   {
      return new JBossWSTestSetup(WebResultTestCase.class, "jaxws-samples-webresult.war");
   }
View Full Code Here

{
   private static BenchmarkService endpoint;

   public static Test suite()
   {
      return new JBossWSTestSetup(BenchmarkRpcJSETestCase.class, "jaxrpc-benchmark-rpclit.war, jaxrpc-benchmark-rpclit-client.jar");
   }
View Full Code Here

public class JBWS124TestCase extends JBossWSTest
{
   /** Deploy the test */
   public static Test suite() throws Exception
   {
      return new JBossWSTestSetup(JBWS124TestCase.class, "jaxrpc-jbws124.war, jaxrpc-jbws124-client.jar");
   }
View Full Code Here

{
   public final String TARGET_ENDPOINT_ADDRESS = "http://" + getServerHost() + ":8080/jaxrpc-serviceref";
  
   public static Test suite()
   {
      return new JBossWSTestSetup(ServiceRefServletTestCase.class, "jaxrpc-serviceref.war, jaxrpc-serviceref-servlet-client.war");
   }
View Full Code Here

   private static TestEndpoint port;

   public static Test suite()
   {
      return new JBossWSTestSetup(JBWS1190TestCase.class, ARCHIVE_NAME + ", jaxrpc-jbws1190-client.jar");
   }
View Full Code Here

TOP

Related Classes of org.jboss.wsf.test.JBossWSTestSetup

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.