Browse Source

passing testcase for issue 46285

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@720440 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 16 years ago
parent
commit
8d3f3bc357
1 changed files with 10 additions and 1 deletions
  1. +10
    -1
      src/tests/antunit/core/nested-text-test.xml

+ 10
- 1
src/tests/antunit/core/nested-text-test.xml View File

@@ -15,7 +15,9 @@
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. 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"> <target name="testAcceptNested">
<echo>foo</echo> <echo>foo</echo>
@@ -27,4 +29,11 @@
<object>foo</object> <object>foo</object>
</au:expectfailure> </au:expectfailure>
</target> </target>

<!-- https://issues.apache.org/bugzilla/show_bug.cgi?id=46285 -->
<target name="testNumericEntities">
<echo>&#xe4;&#169;</echo>
<au:assertLogContains text="ä©"/>
</target>

</project> </project>

Loading…
Cancel
Save