Author: sb
Date: Fri Feb 22 16:32:08 2008
New Revision: 7438

Log:
- Fix test names.

Modified:
    trunk/Workflow/tests/execution_test.php
    trunk/WorkflowSignalSlotTiein/tests/plugin_test.php

Modified: trunk/Workflow/tests/execution_test.php
==============================================================================
--- trunk/Workflow/tests/execution_test.php [iso-8859-1] (original)
+++ trunk/Workflow/tests/execution_test.php [iso-8859-1] Fri Feb 22 16:32:08 
2008
@@ -424,7 +424,7 @@
         $this->fail();
     }
 
-    public function testExclusiveChoiceWithElseSimpleMerge()
+    public function testExecuteExclusiveChoiceWithElseSimpleMerge()
     {
         $this->setUpExclusiveChoiceWithElseSimpleMerge();
         $this->execution->workflow = $this->workflow;
@@ -438,7 +438,7 @@
         $this->assertEquals( true, $this->execution->getVariable( 'x' ) );
     }
 
-    public function testExclusiveChoiceWithElseSimpleMerge2()
+    public function testExecuteExclusiveChoiceWithElseSimpleMerge2()
     {
         $this->setUpExclusiveChoiceWithElseSimpleMerge();
         $this->execution->workflow = $this->workflow;
@@ -452,7 +452,7 @@
         $this->assertEquals( true, $this->execution->getVariable( 'y' ) );
     }
 
-    public function testExclusiveChoiceWithUnconditionalOutNodeSimpleMerge()
+    public function 
testExecuteExclusiveChoiceWithUnconditionalOutNodeSimpleMerge()
     {
         $this->setUpExclusiveChoiceWithUnconditionalOutNodeSimpleMerge();
         $this->execution->workflow = $this->workflow;
@@ -468,7 +468,7 @@
         $this->assertTrue( $this->execution->getVariable( 'z' ) );
     }
 
-    public function testExclusiveChoiceWithUnconditionalOutNodeSimpleMerge2()
+    public function 
testExecuteExclusiveChoiceWithUnconditionalOutNodeSimpleMerge2()
     {
         $this->setUpExclusiveChoiceWithUnconditionalOutNodeSimpleMerge();
         $this->execution->workflow = $this->workflow;
@@ -555,7 +555,7 @@
         $this->assertFalse( $this->execution->isSuspended() );
     }
 
-    public function testNonInteractiveSubWorkflow()
+    public function testExecuteNonInteractiveSubWorkflow()
     {
         $this->setUpWorkflowWithSubWorkflow( 'StartEnd' );
         $this->execution->definitionStorage = $this->definition;
@@ -568,7 +568,7 @@
         $this->assertFalse( $this->execution->isSuspended() );
     }
 
-    public function testNonInteractiveSubWorkflow2()
+    public function testExecuteNonInteractiveSubWorkflow2()
     {
         $this->setUpWorkflowWithSubWorkflow( 'StartEnd' );
         $this->execution->workflow = $this->workflow;
@@ -590,7 +590,7 @@
         $this->fail();
     }
 
-    public function testInteractiveSubWorkflow()
+    public function testExecuteInteractiveSubWorkflow()
     {
         $this->setUpWorkflowWithSubWorkflow( 'StartInputEnd' );
         $this->execution->definitionStorage = $this->definition;
@@ -604,7 +604,7 @@
         $this->assertFalse( $this->execution->isSuspended() );
     }
 
-    public function testWorkflowWithCancelCaseSubWorkflow()
+    public function testExecuteWorkflowWithCancelCaseSubWorkflow()
     {
         $this->setUpWorkflowWithSubWorkflow( 
'ParallelSplitActionActionCancelCaseSynchronization' );
         $this->execution->definitionStorage = $this->definition;
@@ -617,7 +617,7 @@
         $this->assertFalse( $this->execution->isSuspended() );
     }
 
-    public function testServiceObjectWithConstructor()
+    public function testExecuteServiceObjectWithConstructor()
     {
         $this->workflow = $this->definition->loadByName( 
'ServiceObjectWithArguments' );
         $this->execution->workflow = $this->workflow;
@@ -629,7 +629,7 @@
         $this->assertFalse( $this->execution->isSuspended() );
     }
 
-    public function testServiceObjectThatDoesNotFinish()
+    public function testExecuteServiceObjectThatDoesNotFinish()
     {
         $this->workflow = $this->definition->loadByName( 
'ServiceObjectThatDoesNotFinish' );
         $this->execution->workflow = $this->workflow;

Modified: trunk/WorkflowSignalSlotTiein/tests/plugin_test.php
==============================================================================
--- trunk/WorkflowSignalSlotTiein/tests/plugin_test.php [iso-8859-1] (original)
+++ trunk/WorkflowSignalSlotTiein/tests/plugin_test.php [iso-8859-1] Fri Feb 22 
16:32:08 2008
@@ -364,7 +364,7 @@
         $this->assertEquals( 0, $this->receiver->stack['afterVariableUnset'] );
     }
 
-    public function testExclusiveChoiceWithElseSimpleMerge()
+    public function testSignalsForExclusiveChoiceWithElseSimpleMerge()
     {
         $this->setUpExclusiveChoiceWithElseSimpleMerge();
         $this->execution->workflow = $this->workflow;
@@ -388,7 +388,7 @@
         $this->assertEquals( 0, $this->receiver->stack['afterVariableUnset'] );
     }
 
-    public function testExclusiveChoiceWithUnconditionalOutNodeSimpleMerge()
+    public function 
testSignalsForExclusiveChoiceWithUnconditionalOutNodeSimpleMerge()
     {
         $this->setUpExclusiveChoiceWithUnconditionalOutNodeSimpleMerge();
         $this->execution->workflow = $this->workflow;
@@ -481,7 +481,7 @@
         $this->assertEquals( 0, $this->receiver->stack['afterVariableUnset'] );
     }
 
-    public function testNonInteractiveSubWorkflow()
+    public function testSignalsForNonInteractiveSubWorkflow()
     {
         $this->setUpWorkflowWithSubWorkflow( 'StartEnd' );
         $this->execution->definitionStorage = $this->definition;
@@ -505,7 +505,7 @@
         $this->assertEquals( 0, $this->receiver->stack['afterVariableUnset'] );
     }
 
-    public function testInteractiveSubWorkflow()
+    public function testSignalsForInteractiveSubWorkflow()
     {
         $this->setUpWorkflowWithSubWorkflow( 'StartInputEnd' );
         $this->execution->definitionStorage = $this->definition;
@@ -530,7 +530,7 @@
         $this->assertEquals( 0, $this->receiver->stack['afterVariableUnset'] );
     }
 
-    public function testWorkflowWithCancelCaseSubWorkflow()
+    public function testSignalsForWorkflowWithCancelCaseSubWorkflow()
     {
         $this->setUpWorkflowWithSubWorkflow( 
'ParallelSplitActionActionCancelCaseSynchronization' );
         $this->execution->definitionStorage = $this->definition;


-- 
svn-components mailing list
svn-components@lists.ez.no
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to