You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by he...@apache.org on 2005/02/18 13:21:20 UTC

svn commit: r154262 - in webservices/axis/trunk/java: etc/ modules/common/ modules/core/src/test-resources/ modules/deployment/ modules/deployment/src/samples/ modules/deployment/src/samples/deployment/ modules/deployment/src/test-resources/ modules/deployment/src/test-resources/deployment/ modules/om/src/test-resources/ modules/om/src/test-resources/badsoap/ modules/om/src/test-resources/soap/ modules/samples/src/test-resources/ modules/samples/src/test/org/apache/axis/integration/ modules/wsdl/src/test-resources/ modules/wsdl/src/test-resources/wsdl/

Author: hemapani
Date: Fri Feb 18 04:21:17 2005
New Revision: 154262

URL: http://svn.apache.org/viewcvs?view=rev&rev=154262
Log:
fixing test cases

Added:
    webservices/axis/trunk/java/modules/core/src/test-resources/
    webservices/axis/trunk/java/modules/deployment/maven.xml
    webservices/axis/trunk/java/modules/deployment/src/samples/
    webservices/axis/trunk/java/modules/deployment/src/samples/deployment/
      - copied from r154258, webservices/axis/trunk/archive/java/scratch/prototype2/src/samples/deployment/
    webservices/axis/trunk/java/modules/deployment/src/test-resources/
    webservices/axis/trunk/java/modules/deployment/src/test-resources/deployment/
      - copied from r154258, webservices/axis/trunk/archive/java/scratch/prototype2/src/test-resources/deployment/
    webservices/axis/trunk/java/modules/om/src/test-resources/
    webservices/axis/trunk/java/modules/om/src/test-resources/badsoap/
      - copied from r154258, webservices/axis/trunk/archive/java/scratch/prototype2/src/test-resources/badsoap/
    webservices/axis/trunk/java/modules/om/src/test-resources/non_soap.xml
      - copied unchanged from r154258, webservices/axis/trunk/archive/java/scratch/prototype2/src/test-resources/non_soap.xml
    webservices/axis/trunk/java/modules/om/src/test-resources/soap/
      - copied from r154258, webservices/axis/trunk/archive/java/scratch/prototype2/src/test-resources/soap/
    webservices/axis/trunk/java/modules/samples/src/test-resources/
    webservices/axis/trunk/java/modules/samples/src/test/org/apache/axis/integration/Constants.java
    webservices/axis/trunk/java/modules/wsdl/src/test-resources/
    webservices/axis/trunk/java/modules/wsdl/src/test-resources/wsdl/
      - copied from r154258, webservices/axis/trunk/archive/java/scratch/prototype2/src/test-resources/wsdl/
Removed:
    webservices/axis/trunk/java/modules/common/
Modified:
    webservices/axis/trunk/java/etc/project.xml

Modified: webservices/axis/trunk/java/etc/project.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/etc/project.xml?view=diff&r1=154261&r2=154262
==============================================================================
--- webservices/axis/trunk/java/etc/project.xml (original)
+++ webservices/axis/trunk/java/etc/project.xml Fri Feb 18 04:21:17 2005
@@ -144,11 +144,13 @@
       <excludes>
         <exclude>**/*Abstract*.java</exclude>
 	    <exclude>**/*Util*.java</exclude>
-	    <exclude>**/**.java</exclude>
+		<exclude>**/*MessageWithServerTest.java</exclude> 
+		<exclude>**/*TransportDeploymentTest.java</exclude> 
+		<exclude>**/*BuildERWithDeploymentTest.java</exclude> 
       </excludes>
- <!--     <includes>
+     <includes>
         <include>**/*Test.java</include>
-      </includes> -->
+      </includes> 
      <resources>
          <resource>
              <directory>${basedir}/src/test-resources</directory>

Added: webservices/axis/trunk/java/modules/deployment/maven.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/deployment/maven.xml?view=auto&rev=154262
==============================================================================
--- webservices/axis/trunk/java/modules/deployment/maven.xml (added)
+++ webservices/axis/trunk/java/modules/deployment/maven.xml Fri Feb 18 04:21:17 2005
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- $Revision: 1.21 $ $Date: 2004-10-27 20:54:09 +0600 (Wed, 27 Oct 2004) $ -->
+
+<project default="jar"
+    xmlns:j="jelly:core"
+    xmlns:maven="jelly:maven"
+    xmlns:deploy="deploy"
+    xmlns:ant="jelly:ant">
+    <postGoal name="test:compile">
+        <j:jelly xmlns="jelly:ant">
+<!--		<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="src/samples/deployment/service1"/> -->
+		<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="src/samples/deployment/service2"/>
+		<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="src/samples/deployment/module1"/>
+		<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="src/samples/deployment/module2"/>
+	</j:jelly>
+      <ant:copy file="${basedir}/src/test-resources/deployment/server.xml" tofile="${basedir}/target/test-resources/deployment/server.xml"/>
+    </postGoal> 
+ </project>

Added: webservices/axis/trunk/java/modules/samples/src/test/org/apache/axis/integration/Constants.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/samples/src/test/org/apache/axis/integration/Constants.java?view=auto&rev=154262
==============================================================================
--- webservices/axis/trunk/java/modules/samples/src/test/org/apache/axis/integration/Constants.java (added)
+++ webservices/axis/trunk/java/modules/samples/src/test/org/apache/axis/integration/Constants.java Fri Feb 18 04:21:17 2005
@@ -0,0 +1,18 @@
+/*
+ * Created on Feb 18, 2005
+ *
+ * To change the template for this generated file go to
+ * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
+ */
+package org.apache.axis.integration;
+
+/**
+ * @author hemapani
+ *
+ * To change the template for this generated type comment go to
+ * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
+ */
+public class Constants {
+
+    public static final int TESTING_PORT = 5555;
+}