Skip to content

Commit

Permalink
Fix doc block mistakes.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Sep 10, 2014
1 parent 99884e0 commit c5370ea
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/TestSuite/IntegrationTestCase.php
Expand Up @@ -450,7 +450,7 @@ public function assertResponseContains($content, $message = '') {
/**
* Assert that the search string was in the template name.
*
* @param string $file The content to check for.
* @param string $content The content to check for.
* @param string $message The failure message that will be appended to the generated message.
* @return void
*/
Expand All @@ -464,7 +464,7 @@ public function assertTemplate($content, $message = '') {
/**
* Assert that the search string was in the layout name.
*
* @param string $file The content to check for.
* @param string $content The content to check for.
* @param string $message The failure message that will be appended to the generated message.
* @return void
*/
Expand Down Expand Up @@ -500,6 +500,7 @@ public function viewVariable($name) {
* @param string $content The flash message content to check.
* @param string $key The flash namespace the message is in.
* @param string $message The failure message that will be appended to the generated message.
* @return void
*/
public function assertFlash($type, $content, $key = 'flash', $message = '') {
if (empty($this->_requestSession)) {
Expand All @@ -522,6 +523,7 @@ public function assertFlash($type, $content, $key = 'flash', $message = '') {
* @param string $expected The expected contents.
* @param string $path The session data path. Uses Hash::get() compatible notation
* @param string $message The failure message that will be appended to the generated message.
* @return void
*/
public function assertSession($expected, $path, $message = '') {
if (empty($this->_requestSession)) {
Expand All @@ -537,6 +539,7 @@ public function assertSession($expected, $path, $message = '') {
* @param string $expected The expected contents.
* @param string $name The cookie name.
* @param string $message The failure message that will be appended to the generated message.
* @return void
*/
public function assertCookie($expected, $name, $message = '') {
if (empty($this->_response)) {
Expand Down

0 comments on commit c5370ea

Please sign in to comment.