Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 3957 invoked from network); 27 Jul 2005 06:38:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 27 Jul 2005 06:38:05 -0000 Received: (qmail 96886 invoked by uid 500); 27 Jul 2005 06:37:59 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 96823 invoked by uid 500); 27 Jul 2005 06:37:59 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: 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 96810 invoked by uid 500); 27 Jul 2005 06:37:59 -0000 Received: (qmail 96807 invoked by uid 99); 27 Jul 2005 06:37:59 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 26 Jul 2005 23:37:48 -0700 Received: (qmail 3891 invoked by uid 65534); 27 Jul 2005 06:37:46 -0000 Message-ID: <20050727063746.3889.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r225468 [2/2] - in /jakarta/commons/sandbox/pipeline/trunk: ./ src/java/org/apache/commons/pipeline/ src/java/org/apache/commons/pipeline/config/ src/java/org/apache/commons/pipeline/driver/ src/java/org/apache/commons/pipeline/stage/ src/t... Date: Wed, 27 Jul 2005 06:37:40 -0000 To: commons-cvs@jakarta.apache.org From: skitching@apache.org X-Mailer: svnmailer-1.0.2 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Modified: jakarta/commons/sandbox/pipeline/trunk/src/test/conf/test_conf.xml URL: http://svn.apache.org/viewcvs/jakarta/commons/sandbox/pipeline/trunk/src/test/conf/test_conf.xml?rev=225468&r1=225467&r2=225468&view=diff ============================================================================== --- jakarta/commons/sandbox/pipeline/trunk/src/test/conf/test_conf.xml (original) +++ jakarta/commons/sandbox/pipeline/trunk/src/test/conf/test_conf.xml Tue Jul 26 23:36:55 2005 @@ -1,23 +1,34 @@ - - - - src/java - + + + + src/java + + - - - + + + Modified: jakarta/commons/sandbox/pipeline/trunk/src/test/java/org/apache/commons/pipeline/config/DigesterPipelineFactoryTest.java URL: http://svn.apache.org/viewcvs/jakarta/commons/sandbox/pipeline/trunk/src/test/java/org/apache/commons/pipeline/config/DigesterPipelineFactoryTest.java?rev=225468&r1=225467&r2=225468&view=diff ============================================================================== --- jakarta/commons/sandbox/pipeline/trunk/src/test/java/org/apache/commons/pipeline/config/DigesterPipelineFactoryTest.java (original) +++ jakarta/commons/sandbox/pipeline/trunk/src/test/java/org/apache/commons/pipeline/config/DigesterPipelineFactoryTest.java Tue Jul 26 23:36:55 2005 @@ -1,23 +1,32 @@ /* - * DigesterPipelineFactoryTest.java - * JUnit based test + * Copyright 2005 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. * * Created on October 28, 2004, 4:01 PM + * + * $Log: DigesterPipelineFactoryTest.java,v $ + * Revision 1.2 2005/07/25 22:19:17 kjn + * Updated licenses, documentation. + * */ package org.apache.commons.pipeline.config; import junit.framework.TestCase; import junit.framework.*; -import java.io.File; import java.io.InputStream; -import java.util.ArrayList; -import java.util.Iterator; -import java.util.List; import java.util.ResourceBundle; -import org.apache.commons.digester.Digester; -import org.apache.commons.digester.RuleSet; -import org.apache.commons.pipeline.PipelineCreationException; import org.apache.commons.pipeline.Pipeline; import org.apache.commons.pipeline.Stage; import org.apache.commons.pipeline.PipelineFactory; @@ -26,8 +35,9 @@ import javax.xml.parsers.DocumentBuilderFactory; /** + * Test cases for the DigesterPipelineFactory. * - * @author kjn + * @author Kris Nuttycombe, National Geophysical Data Center, NOAA */ public class DigesterPipelineFactoryTest extends TestCase { private ResourceBundle testResources = ResourceBundle.getBundle("TestResources"); @@ -56,8 +66,7 @@ junit.framework.TestSuite suite = new junit.framework.TestSuite(DigesterPipelineFactoryTest.class); return suite; - } - + } public void testCreatePipeline() throws Exception { InputStream istream = this.getClass().getClassLoader().getResourceAsStream(testResources.getString(keyBase + ".configFile")); @@ -80,6 +89,4 @@ if (istream != null) istream.close(); } } - - } --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org