mirror of
https://github.com/nextcloud/server.git
synced 2026-04-04 00:25:45 -04:00
adjust unit test
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
260f0fab4d
commit
2d34274c8a
1 changed files with 5 additions and 1 deletions
|
|
@ -33,6 +33,7 @@ use OCP\ILogger;
|
|||
use OCP\IServerContainer;
|
||||
use OCP\IURLGenerator;
|
||||
use OCP\IUserSession;
|
||||
use OCP\SystemTag\ISystemTagManager;
|
||||
use OCP\WorkflowEngine\ICheck;
|
||||
use OCP\WorkflowEngine\IEntity;
|
||||
use OCP\WorkflowEngine\IManager;
|
||||
|
|
@ -283,7 +284,10 @@ class ManagerTest extends TestCase {
|
|||
$this->l,
|
||||
$this->createMock(IURLGenerator::class),
|
||||
$this->createMock(IRootFolder::class),
|
||||
$this->createMock(ILogger::class)
|
||||
$this->createMock(ILogger::class),
|
||||
$this->createMock(\OCP\Share\IManager::class),
|
||||
$this->createMock(IUserSession::class),
|
||||
$this->createMock(ISystemTagManager::class)
|
||||
])
|
||||
->setMethodsExcept(['getEvents'])
|
||||
->getMock();
|
||||
|
|
|
|||
Loading…
Reference in a new issue