[jbossws-commits] JBossWS SVN: r3703 - in branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws: jaxrpc/jbws751 and 4 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Fri Jun 22 10:54:28 EDT 2007


Author: thomas.diesler at jboss.com
Date: 2007-06-22 10:54:28 -0400 (Fri, 22 Jun 2007)
New Revision: 3703

Modified:
   branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/jaxrpc/jbws434/JBWS434TestCase.java
   branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/jaxrpc/jbws751/JBWS751TestCase.java
   branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/jbws981/JBWS981TestCase.java
   branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/tools/jbws_206/tests/Attachment/AttachmentWSDL2JavaTestCase.java
   branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/tools/jbws_211/tests/Attachment/AttachmentJava2WSDLTestCase.java
   branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/tools/xsdjava/SimpleTypesTestCase.java
Log:
Cleanup FIXME's

Modified: branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/jaxrpc/jbws434/JBWS434TestCase.java
===================================================================
--- branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/jaxrpc/jbws434/JBWS434TestCase.java	2007-06-22 14:35:44 UTC (rev 3702)
+++ branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/jaxrpc/jbws434/JBWS434TestCase.java	2007-06-22 14:54:28 UTC (rev 3703)
@@ -39,10 +39,8 @@
 import org.w3c.dom.NamedNodeMap;
 
 /**
- * Support sequences of anys
+ * [JBWS-434] Support sequences of anys
  * 
- * http://jira.jboss.org/jira/browse/JBWS-434
- *
  * @author Thomas.Diesler at jboss.org
  * @since 11-Nov-2005
  */
@@ -144,9 +142,6 @@
       SOAPElement el1 = factory.createElement("knownWildcard", "ns1", "http://somens");
       el1.setValue("Kermmit");
 
-      System.out.println("FIXME: [JBWS-434] Support sequences of anys");
-      if (true) return;
-      
       TypeOfAny3 inObj = new TypeOfAny3(el1);
       TypeOfAny3 retObj = port.echo3(inObj);
 

Modified: branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/jaxrpc/jbws751/JBWS751TestCase.java
===================================================================
--- branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/jaxrpc/jbws751/JBWS751TestCase.java	2007-06-22 14:35:44 UTC (rev 3702)
+++ branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/jaxrpc/jbws751/JBWS751TestCase.java	2007-06-22 14:54:28 UTC (rev 3703)
@@ -26,11 +26,8 @@
 
 import org.jboss.wsf.spi.test.JBossWSTest;
 
-
-
 /** 
- * Multiple schema imports with the same namespace
- * http://jira.jboss.com/jira/browse/JBWS-751
+ * [JBWS-751] Multiple schema imports with the same namespace
  * 
  * @author Thomas.Diesler at jboss.org
  * @since 16-Mar-2006
@@ -39,7 +36,6 @@
 {
    private static ITranHistory port;
 
-   /** Deploy the test */
 //   public static Test suite() throws Exception
 //   {
 //      return JBossWSTestSetup.newTestSetup(JBWS751TestCase.class, "jaxrpc-jbws751.war, jaxrpc-jbws751-client.jar");

Modified: branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/jbws981/JBWS981TestCase.java
===================================================================
--- branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/jbws981/JBWS981TestCase.java	2007-06-22 14:35:44 UTC (rev 3702)
+++ branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/jbws981/JBWS981TestCase.java	2007-06-22 14:54:28 UTC (rev 3703)
@@ -34,8 +34,6 @@
 /**
  * [JBWS-981] Virtual host configuration for EJB endpoints
  *
- * http://jira.jboss.org/jira/browse/JBWS-981
- *
  * @author darran.lofthouse at jboss.com
  * @since Nov 2, 2006
  */
@@ -65,7 +63,7 @@
 
    public void testCall() throws Exception
    {
-      System.out.println("FIXME: [JBWS-981] Virtual host configuration for EJB endpoints (Enable once JBossAS supports virtual-host element)");
+      System.out.println("FIXME: [JBWS-981] Virtual host configuration for EJB endpoints");
       if (true) return;
 
       String message = "hello";

Modified: branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/tools/jbws_206/tests/Attachment/AttachmentWSDL2JavaTestCase.java
===================================================================
--- branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/tools/jbws_206/tests/Attachment/AttachmentWSDL2JavaTestCase.java	2007-06-22 14:35:44 UTC (rev 3702)
+++ branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/tools/jbws_206/tests/Attachment/AttachmentWSDL2JavaTestCase.java	2007-06-22 14:54:28 UTC (rev 3703)
@@ -37,7 +37,7 @@
    
    public String getFixMe()
    {
-      return "FIXME: [JBWS-269] Support attachments in Web Services Tools"; 
+      return null; 
    }
    
    public String getSEIName()

Modified: branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/tools/jbws_211/tests/Attachment/AttachmentJava2WSDLTestCase.java
===================================================================
--- branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/tools/jbws_211/tests/Attachment/AttachmentJava2WSDLTestCase.java	2007-06-22 14:35:44 UTC (rev 3702)
+++ branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/tools/jbws_211/tests/Attachment/AttachmentJava2WSDLTestCase.java	2007-06-22 14:54:28 UTC (rev 3703)
@@ -40,7 +40,7 @@
    
    public String getFixMe()
    {
-      return "FIXME: [JBWS-269] Support attachments in Web Services Tools"; 
+      return null; 
    }
    
    public String getWSDLName()

Modified: branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/tools/xsdjava/SimpleTypesTestCase.java
===================================================================
--- branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/tools/xsdjava/SimpleTypesTestCase.java	2007-06-22 14:35:44 UTC (rev 3702)
+++ branches/jbossws-2.0/jbossws-core/src/test/java/org/jboss/test/ws/tools/xsdjava/SimpleTypesTestCase.java	2007-06-22 14:54:28 UTC (rev 3703)
@@ -62,11 +62,9 @@
       File file2 = new File(genPath + "/org/jboss/ws/types/" + fname);
       File file1 = new File(base + "/wscompile/simpletypes/" + fname);
       
-      System.out.println("FIXME: [JBWS-940] Add wsdl-java support for jdk 1.4 typesafe enums");
-      
       JBossSourceComparator sc = new JBossSourceComparator(file1, file2);
       
-      System.out.println("FIXME: [JBWS-940] Add wsdl-java support for jdk 1.4 typesafe enums");
+      // [JBWS-940] Add wsdl-java support for jdk 1.4 typesafe enums
       //assertTrue("Source Files Match:", sc.validate());
       //sc.validateImports();
 




More information about the jbossws-commits mailing list