diff --git a/lib/Cake/Test/test_app/Controller/TestsAppsPostsController.php b/lib/Cake/Test/test_app/Controller/TestsAppsPostsController.php index 46d08da443a..98c9107b0b4 100644 --- a/lib/Cake/Test/test_app/Controller/TestsAppsPostsController.php +++ b/lib/Cake/Test/test_app/Controller/TestsAppsPostsController.php @@ -27,6 +27,11 @@ class TestsAppsPostsController extends AppController { public $viewPath = 'TestsApps'; +/** + * add method + * + * @return void + */ public function add() { $data = array( 'Post' => array( @@ -44,6 +49,7 @@ public function add() { /** * check URL params * + * @return void */ public function url_var() { $this->set('params', $this->request->params); @@ -53,12 +59,18 @@ public function url_var() { /** * post var testing * + * @return void */ public function post_var() { $this->set('data', $this->request->data); $this->render('index'); } +/** + * input_data() + * + * @return void + */ public function input_data() { $this->set('data', $this->request->input('json_decode', true)); $this->render('index'); @@ -67,6 +79,7 @@ public function input_data() { /** * Fixturized action for testAction() * + * @return void */ public function fixtured() { $this->set('posts', $this->Post->find('all')); diff --git a/lib/Cake/TestSuite/CakeTestSuiteCommand.php b/lib/Cake/TestSuite/CakeTestSuiteCommand.php index 65e39194297..1af5baa8efa 100644 --- a/lib/Cake/TestSuite/CakeTestSuiteCommand.php +++ b/lib/Cake/TestSuite/CakeTestSuiteCommand.php @@ -57,6 +57,7 @@ public function __construct($loader, $params = array()) { * * @param array $argv * @param boolean $exit + * @return void */ public function run(array $argv, $exit = true) { $this->handleArguments($argv); diff --git a/lib/Cake/TestSuite/ControllerTestCase.php b/lib/Cake/TestSuite/ControllerTestCase.php index 23f03ce79a8..a2b58c44bd8 100644 --- a/lib/Cake/TestSuite/ControllerTestCase.php +++ b/lib/Cake/TestSuite/ControllerTestCase.php @@ -94,6 +94,7 @@ class InterceptContentHelper extends Helper { * Intercepts and stores the contents of the view before the layout is rendered * * @param string $viewFile The view file + * @return void */ public function afterRender($viewFile) { $this->_View->assign('__view_no_layout__', $this->_View->fetch('content')); diff --git a/lib/Cake/TestSuite/Fixture/CakeTestModel.php b/lib/Cake/TestSuite/Fixture/CakeTestModel.php index bd23336c46b..dc425421114 100644 --- a/lib/Cake/TestSuite/Fixture/CakeTestModel.php +++ b/lib/Cake/TestSuite/Fixture/CakeTestModel.php @@ -47,8 +47,8 @@ public function __construct($id = false, $table = null, $ds = null) { * @param array $data * @param boolean|array $validate * @param array $fieldList + * @return void */ - public function save($data = null, $validate = true, $fieldList = array()) { $db = $this->getDataSource(); $db->columns['datetime']['formatter'] = 'CakeTestSuiteDispatcher::date'; diff --git a/lib/Cake/TestSuite/Reporter/CakeBaseReporter.php b/lib/Cake/TestSuite/Reporter/CakeBaseReporter.php index b14162a72d0..f98cde85c7e 100644 --- a/lib/Cake/TestSuite/Reporter/CakeBaseReporter.php +++ b/lib/Cake/TestSuite/Reporter/CakeBaseReporter.php @@ -122,6 +122,7 @@ public function baseUrl() { * Print result * * @param PHPUnit_Framework_TestResult $result + * @return void */ public function printResult(PHPUnit_Framework_TestResult $result) { $this->paintFooter($result); @@ -131,6 +132,7 @@ public function printResult(PHPUnit_Framework_TestResult $result) { * Paint result * * @param PHPUnit_Framework_TestResult $result + * @return void */ public function paintResult(PHPUnit_Framework_TestResult $result) { $this->paintFooter($result); @@ -142,6 +144,7 @@ public function paintResult(PHPUnit_Framework_TestResult $result) { * @param PHPUnit_Framework_Test $test * @param Exception $e * @param float $time + * @return void */ public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) { $this->paintException($e, $test); @@ -153,6 +156,7 @@ public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) { * @param PHPUnit_Framework_Test $test * @param PHPUnit_Framework_AssertionFailedError $e * @param float $time + * @return void */ public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) { $this->paintFail($e, $test); @@ -164,6 +168,7 @@ public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_Asser * @param PHPUnit_Framework_Test $test * @param Exception $e * @param float $time + * @return void */ public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) { $this->paintSkip($e, $test); @@ -175,6 +180,7 @@ public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $t * @param PHPUnit_Framework_Test $test * @param Exception $e * @param float $time + * @return void */ public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) { $this->paintSkip($e, $test); @@ -184,6 +190,7 @@ public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time * A test suite started. * * @param PHPUnit_Framework_TestSuite $suite + * @return void */ public function startTestSuite(PHPUnit_Framework_TestSuite $suite) { if (!$this->_headerSent) { @@ -196,6 +203,7 @@ public function startTestSuite(PHPUnit_Framework_TestSuite $suite) { * A test suite ended. * * @param PHPUnit_Framework_TestSuite $suite + * @return void */ public function endTestSuite(PHPUnit_Framework_TestSuite $suite) { } @@ -204,6 +212,7 @@ public function endTestSuite(PHPUnit_Framework_TestSuite $suite) { * A test started. * * @param PHPUnit_Framework_Test $test + * @return void */ public function startTest(PHPUnit_Framework_Test $test) { } @@ -213,6 +222,7 @@ public function startTest(PHPUnit_Framework_Test $test) { * * @param PHPUnit_Framework_Test $test * @param float $time + * @return void */ public function endTest(PHPUnit_Framework_Test $test, $time) { $this->numAssertions += $test->getNumAssertions();