You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2008/11/25 13:28:22 UTC

svn commit: r720479 - /ant/core/trunk/src/tests/antunit/taskdefs/xslt-test.xml

Author: bodewig
Date: Tue Nov 25 04:28:21 2008
New Revision: 720479

URL: http://svn.apache.org/viewvc?rev=720479&view=rev
Log:
Initial AntUnit test for xslt

Added:
    ant/core/trunk/src/tests/antunit/taskdefs/xslt-test.xml   (with props)

Added: ant/core/trunk/src/tests/antunit/taskdefs/xslt-test.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/tests/antunit/taskdefs/xslt-test.xml?rev=720479&view=auto
==============================================================================
--- ant/core/trunk/src/tests/antunit/taskdefs/xslt-test.xml (added)
+++ ant/core/trunk/src/tests/antunit/taskdefs/xslt-test.xml Tue Nov 25 04:28:21 2008
@@ -0,0 +1,38 @@
+<?xml version="1.0"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<project default="antunit" xmlns:au="antlib:org.apache.ant.antunit">
+  <import file="../antunit-base.xml" />
+
+  <target name="setUp">
+    <mkdir dir="${output}"/>
+    <property name="legacy.dir"
+              location="../../../etc/testcases/taskdefs/style/"/>
+  </target>
+
+  <target name="testParameterPropagation" depends="setUp">
+    <xslt in="${legacy.dir}/data.xml"
+          out="${output}/out.xml"
+          style="${legacy.dir}/printParams.xsl">
+      <param name="set" expression="myvalue"/>
+    </xslt>
+    <au:assertResourceContains
+       resource="${output}/out.xml"
+       value="set='myvalue'"/>
+  </target>
+
+</project>

Propchange: ant/core/trunk/src/tests/antunit/taskdefs/xslt-test.xml
------------------------------------------------------------------------------
    svn:eol-style = native