Author: mszefler
Date: Wed Apr 4 12:14:16 2007
New Revision: 525582
URL: http://svn.apache.org/viewvc?view=rev&rev=525582
Log:
test case fixes
Added:
incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/NoRootActivity.bpel
- copied, changed from r523842,
incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/BpelParseErr.bpel
incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/NoRootActivity.wsdl
- copied, changed from r523842,
incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/BpelParseErr.wsdl
Removed:
incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/BpelParseErr.bpel
incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/BpelParseErr.wsdl
Modified:
incubator/ode/trunk/bpel-compiler/ (props changed)
incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/bom/BpelObjectFactory.java
incubator/ode/trunk/bpel-compiler/src/test/java/org/apache/ode/bpel/compiler/StaticCheckSuite.java
incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/UndeclaredPropertyAlias.wsdl
Propchange: incubator/ode/trunk/bpel-compiler/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Wed Apr 4 12:14:16 2007
@@ -2,3 +2,5 @@
.project
~*
*~
+
+target
Modified:
incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/bom/BpelObjectFactory.java
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/bom/BpelObjectFactory.java?view=diff&rev=525582&r1=525581&r2=525582
==============================================================================
---
incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/bom/BpelObjectFactory.java
(original)
+++
incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/bom/BpelObjectFactory.java
Wed Apr 4 12:14:16 2007
@@ -232,7 +232,7 @@
_mappings.put(Bpel11QNames.PLINKTYPE, PartnerLinkType.class);
_mappings.put(Bpel11QNames.PLINKROLE, PartnerLinkType.Role11.class);
_mappings.put(Bpel11QNames.PORTTYPE,
PartnerLinkType.Role11.PortType11.class);
- _mappings.put(Bpel11QNames.PROPALIAS, PropertyAlias.class);
+ _mappings.put(Bpel11QNames.PROPALIAS, PropertyAlias11.class);
_mappings.put(Bpel11QNames.PROPERTY, Property.class);
_mappings.put(Bpel11QNames.VARIABLES, Variables.class);
_mappings.put(Bpel11QNames.VARIABLE, Variable.class);
Modified:
incubator/ode/trunk/bpel-compiler/src/test/java/org/apache/ode/bpel/compiler/StaticCheckSuite.java
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-compiler/src/test/java/org/apache/ode/bpel/compiler/StaticCheckSuite.java?view=diff&rev=525582&r1=525581&r2=525582
==============================================================================
---
incubator/ode/trunk/bpel-compiler/src/test/java/org/apache/ode/bpel/compiler/StaticCheckSuite.java
(original)
+++
incubator/ode/trunk/bpel-compiler/src/test/java/org/apache/ode/bpel/compiler/StaticCheckSuite.java
Wed Apr 4 12:14:16 2007
@@ -28,7 +28,7 @@
public static Test suite() throws Exception {
TestSuite suite = new StaticCheckSuite();
- suite.addTest(new StaticCheckTCase("BpelParseErr"));
+ suite.addTest(new StaticCheckTCase("NoRootActivity"));
suite.addTest(new StaticCheckTCase("PortTypeMismatch"));
suite.addTest(new StaticCheckTCase("UndeclaredPropertyAlias"));
suite.addTest(new StaticCheckTCase("UnknownBpelFunction"));
Copied:
incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/NoRootActivity.bpel
(from r523842,
incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/BpelParseErr.bpel)
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/NoRootActivity.bpel?view=diff&rev=525582&p1=incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/BpelParseErr.bpel&r1=523842&p2=incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/NoRootActivity.bpel&r2=525582
==============================================================================
(empty)
Copied:
incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/NoRootActivity.wsdl
(from r523842,
incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/BpelParseErr.wsdl)
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/NoRootActivity.wsdl?view=diff&rev=525582&p1=incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/BpelParseErr.wsdl&r1=523842&p2=incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/NoRootActivity.wsdl&r2=525582
==============================================================================
(empty)
Modified:
incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/UndeclaredPropertyAlias.wsdl
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/UndeclaredPropertyAlias.wsdl?view=diff&rev=525582&r1=525581&r2=525582
==============================================================================
---
incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/UndeclaredPropertyAlias.wsdl
(original)
+++
incubator/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/UndeclaredPropertyAlias.wsdl
Wed Apr 4 12:14:16 2007
@@ -38,7 +38,7 @@
<wsdl:output message="tns:TestMessage" name="TestOut"/>
</wsdl:operation>
</wsdl:portType>
- <bpws:property name="testProp"
+ <bpws:property name="testProp"
type="xsd:string"/>