Package org.jboss.test.ws.jaxws.jbws1843

Examples of org.jboss.test.ws.jaxws.jbws1843.JBWS1843TestCase


      proxy = (Service)service.getPort(Service.class);
   }
  
   public void testCountryCodes() throws Exception
   {
      Response response = proxy.getCountryCodes();
      List<CountryCodeType> countryCodes = response.getCountry();
      assertEquals(countryCodes.get(0), CountryCodeType.CZ);
      assertEquals(countryCodes.get(1), CountryCodeType.DE);
   }
View Full Code Here


   /*
    * @see org.jboss.test.ws.jaxws.jbws1843.generated.Service#getCountryCodes()
    */
   public Response getCountryCodes()
   {
      Response response = new Response();
      List<CountryCodeType> values = response.getCountry();
      values.add(CountryCodeType.CZ);
      values.add(CountryCodeType.DE);
      return response;
   }
View Full Code Here

      proxy = (Service)service.getPort(Service.class);
   }
  
   public void testCountryCodes() throws Exception
   {
      Response response = proxy.getCountryCodes();
      List<CountryCodeType> countryCodes = response.getCountry();
      assertEquals(countryCodes.get(0), CountryCodeType.CZ);
      assertEquals(countryCodes.get(1), CountryCodeType.DE);
   }
View Full Code Here

   /*
    * @see org.jboss.test.ws.jaxws.jbws1843.generated.Service#getCountryCodes()
    */
   public Response getCountryCodes()
   {
      Response response = new Response();
      List<CountryCodeType> values = response.getCountry();
      values.add(CountryCodeType.CZ);
      values.add(CountryCodeType.DE);
      return response;
   }
View Full Code Here

TOP

Related Classes of org.jboss.test.ws.jaxws.jbws1843.JBWS1843TestCase

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.