<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace Zend\Test\PHPUnit\Controller;
use PHPUnit_Framework_ExpectationFailedException;
abstract class AbstractConsoleControllerTestCase extends AbstractControllerTestCase
{
/**
* HTTP controller must use the console request
* @var bool
*/
protected $useConsoleRequest = true;
/**
* Assert console output contain content (insensible case)
*
* @param string $match content that should be contained in matched nodes
* @return void
*/
public function assertConsoleOutputContains($match)
{
$response = $this->getResponse();
if (false === stripos($response->getContent(), $match)) {
throw new PHPUnit_Framework_ExpectationFailedException(sprintf(
'Failed asserting output CONTAINS content "%s", actual content is "%s"',
$match, $response->getContent()
));
}
$this->assertNotSame(false, stripos($response->getContent(), $match));
}
/**
* Assert console output not contain content
*
* @param string $match content that should be contained in matched nodes
* @return void
*/
public function assertNotConsoleOutputContains($match)
{
$response = $this->getResponse();
if (false !== stripos($response->getContent(), $match)) {
throw new PHPUnit_Framework_ExpectationFailedException(sprintf(
'Failed asserting output DOES NOT CONTAIN content "%s"',
$match
));
}
$this->assertSame(false, stripos($response->getContent(), $match));
}
}
# |
Change |
User |
Description |
Committed |
|
#1
|
18334 |
Liz Lam |
initial add of jambox |
|
|