Author: ryman
Date: Thu Oct 19 15:08:44 2006
New Revision: 465909
URL: http://svn.apache.org/viewvc?view=rev&rev=465909
Log:
Added targets to generate WSDL CM files for W3C messages test suite.
Modified:
incubator/woden/trunk/java/ant-test/build.xml
Modified: incubator/woden/trunk/java/ant-test/build.xml
URL:
http://svn.apache.org/viewvc/incubator/woden/trunk/java/ant-test/build.xml?view=diff&rev=465909&r1=465908&r2=465909
==============================================================================
--- incubator/woden/trunk/java/ant-test/build.xml (original)
+++ incubator/woden/trunk/java/ant-test/build.xml Thu Oct 19 15:08:44 2006
@@ -35,7 +35,17 @@
<target name="documents-good" description="---> Validates W3C WSDL 2.0
good document test suite and outputs component model">
<mkdir dir="results" />
<validatewsdl20 dir="${test-suite.dir}/documents/good"
includes="**/*.wsdl" excludes="SchemaId-1G/schemaIds.wsdl
Storage-4G/storage.wsdl" cm="yes" cmdir="results"
report="documents-good-report.xml" />
- <zip destfile="test-suite-results.zip" basedir="results" />
+ <zip destfile="test-suite-results.zip" basedir="results" />
+ </target>
+
+ <target name="messages-good" description="---> Validates W3C WSDL 2.0
good message test suite and outputs component model">
+ <mkdir dir="messages-results" />
+ <validatewsdl20 dir="${test-suite.dir}/messages/good"
includes="**/*.wsdl" cm="yes" cmdir="messages-results"
report="messages-good-report.xml" />
+ <zip destfile="test-suite-messages-results.zip"
basedir="messages-results" />
+ </target>
+
+ <target name="messages-good-in-place" description="---> Validates W3C
WSDL 2.0 good message test suite and outputs component model in place">
+ <validatewsdl20 dir="${test-suite.dir}/messages/good"
includes="**/*.wsdl" cm="yes" cmdir="${test-suite.dir}/messages/good"
report="${test-suite.dir}/messages/good/messages-good-report.xml" />
</target>
<target name="documents-bad" description="---> Validates W3C WSDL 2.0
bad document test suite and outputs report">
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]