merge fix.
Project: http://git-wip-us.apache.org/repos/asf/ode/repo Commit: http://git-wip-us.apache.org/repos/asf/ode/commit/da1d6f9e Tree: http://git-wip-us.apache.org/repos/asf/ode/tree/da1d6f9e Diff: http://git-wip-us.apache.org/repos/asf/ode/diff/da1d6f9e Branch: refs/heads/master Commit: da1d6f9ede4a0ce263f62f7e935c478cb87d0d40 Parents: f901c37 Author: Tammo van Lessen <[email protected]> Authored: Fri Aug 30 00:15:58 2013 +0200 Committer: Tammo van Lessen <[email protected]> Committed: Fri Aug 30 00:15:58 2013 +0200 ---------------------------------------------------------------------- .../ode/bpel/compiler_2_0/GoodCompileTest.java | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ode/blob/da1d6f9e/bpel-compiler/src/test/java/org/apache/ode/bpel/compiler_2_0/GoodCompileTest.java ---------------------------------------------------------------------- diff --git a/bpel-compiler/src/test/java/org/apache/ode/bpel/compiler_2_0/GoodCompileTest.java b/bpel-compiler/src/test/java/org/apache/ode/bpel/compiler_2_0/GoodCompileTest.java index 8dd49b1..1327105 100644 --- a/bpel-compiler/src/test/java/org/apache/ode/bpel/compiler_2_0/GoodCompileTest.java +++ b/bpel-compiler/src/test/java/org/apache/ode/bpel/compiler_2_0/GoodCompileTest.java @@ -27,10 +27,6 @@ import org.apache.ode.bpel.compiler.api.CompileListener; import org.junit.Assert; import org.junit.Test; - suite.addTest(new GoodCompileTCase("/2.0/good/foreach/ForEach1-2.0.bpel")); - suite.addTest(new GoodCompileTCase("/2.0/good/foreach/ForEach2-2.0.bpel")); - suite.addTest(new GoodCompileTCase("/2.0/good/foreach/ForEach3-2.0.bpel")); - public class GoodCompileTest extends AbstractCompileTestCase implements CompileListener { public void runTest(String bpel) throws Exception { @@ -133,6 +129,21 @@ public class GoodCompileTest extends AbstractCompileTestCase implements CompileL } @Test + public void testForEach1() throws Exception { + runTest("/2.0/good/foreach/ForEach1-2.0.bpel"); + } + + @Test + public void testForEach2() throws Exception { + runTest("/2.0/good/foreach/ForEach2-2.0.bpel"); + } + + @Test + public void testForEach3() throws Exception { + runTest("/2.0/good/foreach/ForEach3-2.0.bpel"); + } + + @Test public void testIf1() throws Exception { runTest("/2.0/good/if/If1-2.0.bpel"); }
