You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <project default="all" xmlns:au="antlib:org.apache.ant.antunit">
-
- <target name="test-dir-char">
- <pathconvert property="def|ghi" dirsep="|">
- <map from="${basedir}/abc/" to=''/>
- <path path="${basedir}/abc/def/ghi"/>
- </pathconvert>
- <au:assertTrue>
- <equals arg1="${def|ghi}" arg2="def|ghi"/>
- </au:assertTrue>
- </target>
-
- <target name="all">
- <au:antunit>
- <fileset file="${ant.file}"/>
- <au:plainlistener/>
- </au:antunit>
- </target>
- </project>
|