Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 57950 invoked from network); 4 Apr 2004 18:18:38 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 4 Apr 2004 18:18:38 -0000 Received: (qmail 73161 invoked by uid 500); 4 Apr 2004 18:18:26 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 73114 invoked by uid 500); 4 Apr 2004 18:18:26 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 73092 invoked by uid 500); 4 Apr 2004 18:18:26 -0000 Received: (qmail 73087 invoked from network); 4 Apr 2004 18:18:25 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 4 Apr 2004 18:18:25 -0000 Received: (qmail 57938 invoked by uid 1289); 4 Apr 2004 18:18:34 -0000 Date: 4 Apr 2004 18:18:34 -0000 Message-ID: <20040404181834.57937.qmail@minotaur.apache.org> From: rdonkin@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/digester/src/test/org/apache/commons/digester TestEntityResolution.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N rdonkin 2004/04/04 11:18:34 Added: digester/src/test/org/apache/commons/digester TestEntityResolution.java Log: Simple entity resolution test case Revision Changes Path 1.1 jakarta-commons/digester/src/test/org/apache/commons/digester/TestEntityResolution.java Index: TestEntityResolution.java =================================================================== /* * Copyright 2004 The Apache Software Foundation. * * Licensed 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. */ package org.apache.commons.digester; import java.io.File; import javax.xml.parsers.SAXParser; import javax.xml.parsers.SAXParserFactory; import org.xml.sax.helpers.DefaultHandler; import junit.framework.TestCase; /** * Tests for entity resolution. * @author Jakarta Commons Team * @version $Revision: 1.1 $ */ public class TestEntityResolution extends TestCase { public void testParserResolveRelative() throws Exception { SAXParserFactory factory = SAXParserFactory.newInstance(); factory.setValidating(true); factory.setNamespaceAware(true); SAXParser parser = factory.newSAXParser(); parser.parse( new File("src/test/org/apache/commons/digester/document-with-relative-dtd.xml"), new DefaultHandler()); } public void testDigesterResolveRelative() throws Exception { Digester digester = new Digester(); digester.setValidating(true); digester.parse( new File("src/test/org/apache/commons/digester/document-with-relative-dtd.xml")); } } --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org