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 09:39:22 UTC

svn commit: r720440 - /ant/core/trunk/src/tests/antunit/core/nested-text-test.xml

Author: bodewig
Date: Tue Nov 25 00:39:21 2008
New Revision: 720440

URL: http://svn.apache.org/viewvc?rev=720440&view=rev
Log:
passing testcase for issue 46285

Modified:
    ant/core/trunk/src/tests/antunit/core/nested-text-test.xml

Modified: ant/core/trunk/src/tests/antunit/core/nested-text-test.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/tests/antunit/core/nested-text-test.xml?rev=720440&r1=720439&r2=720440&view=diff
==============================================================================
--- ant/core/trunk/src/tests/antunit/core/nested-text-test.xml (original)
+++ ant/core/trunk/src/tests/antunit/core/nested-text-test.xml Tue Nov 25 00:39:21 2008
@@ -15,7 +15,9 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 -->
-<project xmlns:au="antlib:org.apache.ant.antunit">
+<project xmlns:au="antlib:org.apache.ant.antunit" default="antunit">
+
+  <import file="../antunit-base.xml"/>
 
   <target name="testAcceptNested">
     <echo>foo</echo>
@@ -27,4 +29,11 @@
       <object>foo</object>
     </au:expectfailure>
   </target>
+
+  <!-- https://issues.apache.org/bugzilla/show_bug.cgi?id=46285 -->
+  <target name="testNumericEntities">
+    <echo>&#xe4;&#169;</echo>
+    <au:assertLogContains text="ä©"/>
+  </target>
+
 </project>