Browse Source

case change

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273305 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 23 years ago
parent
commit
9d40bce40d
1 changed files with 9 additions and 9 deletions
  1. +9
    -9
      src/etc/testcases/taskdefs/optional/WsdlToDotnet.xml

+ 9
- 9
src/etc/testcases/taskdefs/optional/WsdlToDotnet.xml View File

@@ -61,39 +61,39 @@
<target name="testNoParams"> <target name="testNoParams">
<WsdlToDotnet/>
<wsdltodotnet/>
</target> </target>


<target name="testNoSrc"> <target name="testNoSrc">
<WsdlToDotnet destFile="${out.csc}"/>
<wsdltodotnet destFile="${out.csc}"/>
</target> </target>


<target name="testDestIsDir" depends="init"> <target name="testDestIsDir" depends="init">
<WsdlToDotnet destFile="${build.dir}"
<wsdltodotnet destFile="${build.dir}"
srcFile="${local.wsdl}"/> srcFile="${local.wsdl}"/>
</target> </target>
<target name="testBothSrc" depends="init"> <target name="testBothSrc" depends="init">
<WsdlToDotnet destFile="${out.csc}"
<wsdltodotnet destFile="${out.csc}"
srcFile="${local.wsdl}" srcFile="${local.wsdl}"
url="${endpoint.wsdl}" url="${endpoint.wsdl}"
/> />
</target> </target>


<target name="testSrcIsDir" depends="init"> <target name="testSrcIsDir" depends="init">
<WsdlToDotnet destFile="${out.csc}"
<wsdltodotnet destFile="${out.csc}"
srcFile="${build.dir}" srcFile="${build.dir}"
/> />
</target> </target>


<target name="testSrcIsMissing" depends="init"> <target name="testSrcIsMissing" depends="init">
<WsdlToDotnet destFile="${out.csc}"
<wsdltodotnet destFile="${out.csc}"
srcFile="${build.dir}/invalidfile.wsdl" srcFile="${build.dir}/invalidfile.wsdl"
/> />
</target> </target>
<target name="testLocalWsdl" depends="init"> <target name="testLocalWsdl" depends="init">
<WsdlToDotnet destFile="${out.csc}"
<wsdltodotnet destFile="${out.csc}"
srcFile="${local.wsdl}" srcFile="${local.wsdl}"
/> />
<csc <csc
@@ -106,7 +106,7 @@
</target> </target>
<target name="testLocalWsdlServer" depends="init"> <target name="testLocalWsdlServer" depends="init">
<WsdlToDotnet destFile="${out.csc}"
<wsdltodotnet destFile="${out.csc}"
srcFile="${local.wsdl}" srcFile="${local.wsdl}"
server="true" server="true"
/> />
@@ -121,7 +121,7 @@
</target> </target>
<target name="testInvalidExtraOps" depends="init"> <target name="testInvalidExtraOps" depends="init">
<WsdlToDotnet destFile="${out.csc}"
<wsdltodotnet destFile="${out.csc}"
srcFile="${local.wsdl}" srcFile="${local.wsdl}"
extraOptions="/newOption:not-one-known-of" extraOptions="/newOption:not-one-known-of"
/> />


Loading…
Cancel
Save