added check

This commit is contained in:
Vyacheslav Agafonov
2011-12-01 17:36:20 +04:00
parent 66857702b6
commit 8aba4dc172

View File

@ -92,10 +92,14 @@ class LayoutTest extends PHPUnit_Framework_TestCase
if (!defined('DEBUG')) { if (!defined('DEBUG')) {
define('DEBUG', false); define('DEBUG', false);
} }
$layout = $this->getMockForAbstractClass('Layout'); $layout = $this->getMockForAbstractClass('Layout', array('append', 'prepend'), 'LayoutMock');
$action = $this->getMock('Action', array('fetch')); $action = $this->getMock('Action', array('fetch'));
$class = new ReflectionClass('Layout'); $action->expects($this->exactly(3))
->method('fetch')
->will($this->returnValue(true));
$class = new ReflectionClass('LayoutMock');
$method = $class->getMethod('append'); $method = $class->getMethod('append');
$method->setAccessible(true); $method->setAccessible(true);