You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by lr...@apache.org on 2007/09/15 02:35:29 UTC

svn commit: r575834 - /incubator/tuscany/java/sca/modules/implementation-bpel/src/test/java/org/apache/tuscany/sca/implementation/bpel/BPELDocumentProcessorTestCase.java

Author: lresende
Date: Fri Sep 14 17:35:28 2007
New Revision: 575834

URL: http://svn.apache.org/viewvc?rev=575834&view=rev
Log:
Fixing HelloWorld case issues, as it was breaking linux build

Modified:
    incubator/tuscany/java/sca/modules/implementation-bpel/src/test/java/org/apache/tuscany/sca/implementation/bpel/BPELDocumentProcessorTestCase.java

Modified: incubator/tuscany/java/sca/modules/implementation-bpel/src/test/java/org/apache/tuscany/sca/implementation/bpel/BPELDocumentProcessorTestCase.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-bpel/src/test/java/org/apache/tuscany/sca/implementation/bpel/BPELDocumentProcessorTestCase.java?rev=575834&r1=575833&r2=575834&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/implementation-bpel/src/test/java/org/apache/tuscany/sca/implementation/bpel/BPELDocumentProcessorTestCase.java (original)
+++ incubator/tuscany/java/sca/modules/implementation-bpel/src/test/java/org/apache/tuscany/sca/implementation/bpel/BPELDocumentProcessorTestCase.java Fri Sep 14 17:35:28 2007
@@ -6,15 +6,15 @@
  * 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.    
+ * under the License.
  */
 
 package org.apache.tuscany.sca.implementation.bpel;
@@ -36,30 +36,30 @@
  * @version $Rev$ $Date$
  */
 public class BPELDocumentProcessorTestCase extends TestCase {
-    
-    protected static final String BPEL_PROCESS_FILE = "HelloWorld.bpel";
+
+    protected static final String BPEL_PROCESS_FILE = "helloworld.bpel";
 
     private ModelFactoryExtensionPoint modelFactories;
 
     @Override
     protected void setUp() throws Exception {
         super.setUp();
-       
+
         modelFactories = new DefaultModelFactoryExtensionPoint();
         modelFactories.addFactory(new DefaultAssemblyFactory());
         modelFactories.addFactory(new DefaultWSDLFactory());
-        
+
         BPELFactory bpelFactory = new DefaultBPELFactory(modelFactories);
         modelFactories.addFactory(bpelFactory);
     }
 
     public void testLoadBPELProcessDefinition() throws Exception {
         BPELDocumentProcessor bpelDocumentProcessor = new BPELDocumentProcessor(modelFactories);
-        
+
         URI processURI = getClass().getClassLoader().getResource(BPEL_PROCESS_FILE).toURI();
         URL processLocation = getClass().getClassLoader().getResource(BPEL_PROCESS_FILE);
         BPELProcessDefinition bpelProcessDefinition = bpelDocumentProcessor.read(null, processURI, processLocation);
-        
+
         assertNotNull(bpelProcessDefinition);
         assertEquals(new QName("http://tuscany.apache.org/implementation/bpel/example/helloworld", "HelloWorld"), bpelProcessDefinition.getName());
         assertEquals(processLocation, bpelProcessDefinition.getLocation());



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org