|
|
@@ -16,17 +16,17 @@ namespace Cake\TestSuite\Fixture;
|
|
|
|
|
|
use Cake\TestSuite\TestCase;
|
|
|
use Exception;
|
|
|
-use PHPUnit_Framework_AssertionFailedError;
|
|
|
-use PHPUnit_Framework_Test;
|
|
|
-use PHPUnit_Framework_TestListener;
|
|
|
-use PHPUnit_Framework_TestSuite;
|
|
|
-use PHPUnit_Framework_Warning;
|
|
|
+use PHPUnit\Framework\AssertionFailedError;
|
|
|
+use PHPUnit\Framework\Test;
|
|
|
+use PHPUnit\Framework\TestListener;
|
|
|
+use PHPUnit\Framework\TestSuite;
|
|
|
+use PHPUnit\Framework\Warning;
|
|
|
|
|
|
/**
|
|
|
* Test listener used to inject a fixture manager in all tests that
|
|
|
* are composed inside a Test Suite
|
|
|
*/
|
|
|
-class FixtureInjector implements PHPUnit_Framework_TestListener
|
|
|
+class FixtureInjector implements TestListener
|
|
|
{
|
|
|
|
|
|
/**
|
|
|
@@ -39,7 +39,7 @@ class FixtureInjector implements PHPUnit_Framework_TestListener
|
|
|
/**
|
|
|
* Holds a reference to the container test suite
|
|
|
*
|
|
|
- * @var \PHPUnit_Framework_TestSuite
|
|
|
+ * @var \PHPUnit\Framework\TestSuite
|
|
|
*/
|
|
|
protected $_first;
|
|
|
|
|
|
@@ -61,10 +61,10 @@ class FixtureInjector implements PHPUnit_Framework_TestListener
|
|
|
* Iterates the tests inside a test suite and creates the required fixtures as
|
|
|
* they were expressed inside each test case.
|
|
|
*
|
|
|
- * @param \PHPUnit_Framework_TestSuite $suite The test suite
|
|
|
+ * @param \PHPUnit\Framework\TestSuite $suite The test suite
|
|
|
* @return void
|
|
|
*/
|
|
|
- public function startTestSuite(PHPUnit_Framework_TestSuite $suite)
|
|
|
+ public function startTestSuite(TestSuite $suite)
|
|
|
{
|
|
|
if (empty($this->_first)) {
|
|
|
$this->_first = $suite;
|
|
|
@@ -75,10 +75,10 @@ class FixtureInjector implements PHPUnit_Framework_TestListener
|
|
|
* Destroys the fixtures created by the fixture manager at the end of the test
|
|
|
* suite run
|
|
|
*
|
|
|
- * @param \PHPUnit_Framework_TestSuite $suite The test suite
|
|
|
+ * @param \PHPUnit\Framework\TestSuite $suite The test suite
|
|
|
* @return void
|
|
|
*/
|
|
|
- public function endTestSuite(PHPUnit_Framework_TestSuite $suite)
|
|
|
+ public function endTestSuite(TestSuite $suite)
|
|
|
{
|
|
|
if ($this->_first === $suite) {
|
|
|
$this->_fixtureManager->shutDown();
|
|
|
@@ -88,70 +88,70 @@ class FixtureInjector implements PHPUnit_Framework_TestListener
|
|
|
/**
|
|
|
* Not Implemented
|
|
|
*
|
|
|
- * @param \PHPUnit_Framework_Test $test The test to add errors from.
|
|
|
+ * @param \PHPUnit\Framework\Test $test The test to add errors from.
|
|
|
* @param \Exception $e The exception
|
|
|
* @param float $time current time
|
|
|
* @return void
|
|
|
*/
|
|
|
- public function addError(PHPUnit_Framework_Test $test, Exception $e, $time)
|
|
|
+ public function addError(Test $test, Exception $e, $time)
|
|
|
{
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* Not Implemented
|
|
|
*
|
|
|
- * @param \PHPUnit_Framework_Test $test The test to add warnings from.
|
|
|
- * @param \PHPUnit_Framework_Warning $e The warning
|
|
|
+ * @param \PHPUnit\Framework\Test $test The test to add warnings from.
|
|
|
+ * @param \PHPUnit\Framework\Warning $e The warning
|
|
|
* @param float $time current time
|
|
|
* @return void
|
|
|
*/
|
|
|
- public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time)
|
|
|
+ public function addWarning(Test $test, Warning $e, $time)
|
|
|
{
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* Not Implemented
|
|
|
*
|
|
|
- * @param \PHPUnit_Framework_Test $test The test case
|
|
|
- * @param \PHPUnit_Framework_AssertionFailedError $e The failed assertion
|
|
|
+ * @param \PHPUnit\Framework\Test $test The test case
|
|
|
+ * @param \PHPUnit\Framework\AssertionFailedError $e The failed assertion
|
|
|
* @param float $time current time
|
|
|
* @return void
|
|
|
*/
|
|
|
- public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time)
|
|
|
+ public function addFailure(Test $test, AssertionFailedError $e, $time)
|
|
|
{
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* Not Implemented
|
|
|
*
|
|
|
- * @param \PHPUnit_Framework_Test $test The test case
|
|
|
+ * @param \PHPUnit\Framework\Test $test The test case
|
|
|
* @param \Exception $e The incomplete test error.
|
|
|
* @param float $time current time
|
|
|
* @return void
|
|
|
*/
|
|
|
- public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time)
|
|
|
+ public function addIncompleteTest(Test $test, Exception $e, $time)
|
|
|
{
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* Not Implemented
|
|
|
*
|
|
|
- * @param \PHPUnit_Framework_Test $test The test case
|
|
|
+ * @param \PHPUnit\Framework\Test $test The test case
|
|
|
* @param \Exception $e Skipped test exception
|
|
|
* @param float $time current time
|
|
|
* @return void
|
|
|
*/
|
|
|
- public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time)
|
|
|
+ public function addSkippedTest(Test $test, Exception $e, $time)
|
|
|
{
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* Adds fixtures to a test case when it starts.
|
|
|
*
|
|
|
- * @param \PHPUnit_Framework_Test $test The test case
|
|
|
+ * @param \PHPUnit\Framework\Test $test The test case
|
|
|
* @return void
|
|
|
*/
|
|
|
- public function startTest(PHPUnit_Framework_Test $test)
|
|
|
+ public function startTest(Test $test)
|
|
|
{
|
|
|
$test->fixtureManager = $this->_fixtureManager;
|
|
|
if ($test instanceof TestCase) {
|
|
|
@@ -163,11 +163,11 @@ class FixtureInjector implements PHPUnit_Framework_TestListener
|
|
|
/**
|
|
|
* Unloads fixtures from the test case.
|
|
|
*
|
|
|
- * @param \PHPUnit_Framework_Test $test The test case
|
|
|
+ * @param \PHPUnit\Framework\Test $test The test case
|
|
|
* @param float $time current time
|
|
|
* @return void
|
|
|
*/
|
|
|
- public function endTest(PHPUnit_Framework_Test $test, $time)
|
|
|
+ public function endTest(Test $test, $time)
|
|
|
{
|
|
|
if ($test instanceof TestCase) {
|
|
|
$this->_fixtureManager->unload($test);
|
|
|
@@ -177,12 +177,12 @@ class FixtureInjector implements PHPUnit_Framework_TestListener
|
|
|
/**
|
|
|
* Not Implemented
|
|
|
*
|
|
|
- * @param \PHPUnit_Framework_Test $test The test case
|
|
|
+ * @param \PHPUnit\Framework\Test $test The test case
|
|
|
* @param \Exception $e The exception to track
|
|
|
* @param float $time current time
|
|
|
* @return void
|
|
|
*/
|
|
|
- public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time)
|
|
|
+ public function addRiskyTest(Test $test, Exception $e, $time)
|
|
|
{
|
|
|
}
|
|
|
}
|