Commit c0202a3 1 parent fae992b commit c0202a3 Copy full SHA for c0202a3
File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change
1
+ * Added mechanism of cleaning up all data after scenario execution
2
+
1
3
1.0.0-rc.23
2
4
=============
3
5
* Added an ability to merge form mapping from different modules
Original file line number Diff line number Diff line change @@ -71,17 +71,18 @@ protected function executeScenario()
71
71
}
72
72
73
73
/**
74
- * Executed steps cleanup after test.
74
+ * Run with Variations Iterator
75
75
*
76
- * @return mixed
76
+ * @param \PHPUnit_Framework_TestResult $result
77
+ * @return \PHPUnit_Framework_TestResult
77
78
*/
78
- protected function runTest ( )
79
+ public function run ( \ PHPUnit_Framework_TestResult $ result = null )
79
80
{
80
- $ testResult = parent ::runTest ( );
81
+ $ result = parent ::run ( $ result );
81
82
82
83
$ this ->runStepsCleanup ();
83
84
84
- return $ testResult ;
85
+ return $ result ;
85
86
}
86
87
87
88
/**
You can’t perform that action at this time.
0 commit comments