friendica/tests/Util/HookMockTrait.php

31 lines
527 B
PHP

<?php
namespace Friendica\Test\Util;
use Friendica\Core\Hook;
use Mockery\MockInterface;
trait HookMockTrait
{
/**
* @var MockInterface The Interface for mocking a renderer
*/
private $hookMock;
/**
* Mocking a method 'Hook::call()' call
*
*/
public function mockHookCallAll(string $name, &$capture)
{
if (!isset($this->hookMock)) {
$this->hookMock = \Mockery::mock('alias:' . Hook::class);
}
$this->hookMock
->shouldReceive('callAll')
->withArgs([$name, \Mockery::capture($capture)]);
}
}