diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/workflowengine/tests/ManagerTest.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/workflowengine/tests/ManagerTest.php b/apps/workflowengine/tests/ManagerTest.php index 0f142e642ed..82f1653ef25 100644 --- a/apps/workflowengine/tests/ManagerTest.php +++ b/apps/workflowengine/tests/ManagerTest.php @@ -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(); |