Removing legacy code that will not work on current versions of phpunit,

fixes #3955
This commit is contained in:
Jose Lorenzo Rodriguez 2013-08-02 12:21:26 +02:00
parent cd4f4de063
commit d218313cf5

View file

@ -75,24 +75,6 @@ class CakeTestSuiteCommand extends PHPUnit_TextUI_Command {
); );
} }
if (!count($suite)) {
$skeleton = new PHPUnit_Util_Skeleton_Test(
$suite->getName(),
$this->arguments['testFile']
);
$result = $skeleton->generate(true);
if (!$result['incomplete']) {
//@codingStandardsIgnoreStart
eval(str_replace(array('<?php', '?>'), '', $result['code']));
//@codingStandardsIgnoreEnd
$suite = new PHPUnit_Framework_TestSuite(
$this->arguments['test'] . 'Test'
);
}
}
if ($this->arguments['listGroups']) { if ($this->arguments['listGroups']) {
PHPUnit_TextUI_TestRunner::printVersionString(); PHPUnit_TextUI_TestRunner::printVersionString();