summaryrefslogtreecommitdiffstats
path: root/tests/lib/Contacts
diff options
context:
space:
mode:
authorTobia De Koninck <tobia@ledfan.be>2017-07-02 11:33:59 +0200
committerLukas Reschke <lukas@statuscode.ch>2017-09-15 14:31:39 +0200
commit473a1ecad1e310603f08e1883d29d92463d61653 (patch)
treeb122f34ff1a50593da2134de4c2405639ac6ca43 /tests/lib/Contacts
parent92c238e0f072299f5ad1c41d86e158b4039094fa (diff)
downloadnextcloud-server-473a1ecad1e310603f08e1883d29d92463d61653.tar.gz
nextcloud-server-473a1ecad1e310603f08e1883d29d92463d61653.zip
Fix tests
Signed-off-by: Tobia De Koninck <tobia@ledfan.be>
Diffstat (limited to 'tests/lib/Contacts')
-rw-r--r--tests/lib/Contacts/ContactsMenu/ContactsStoreTest.php20
1 files changed, 19 insertions, 1 deletions
diff --git a/tests/lib/Contacts/ContactsMenu/ContactsStoreTest.php b/tests/lib/Contacts/ContactsMenu/ContactsStoreTest.php
index 08da360388f..520df2ccfae 100644
--- a/tests/lib/Contacts/ContactsMenu/ContactsStoreTest.php
+++ b/tests/lib/Contacts/ContactsMenu/ContactsStoreTest.php
@@ -26,7 +26,10 @@ namespace Tests\Contacts\ContactsMenu;
use OC\Contacts\ContactsMenu\ContactsStore;
use OCP\Contacts\IManager;
+use OCP\IConfig;
+use OCP\IGroupManager;
use OCP\IUser;
+use OCP\IUserManager;
use PHPUnit_Framework_MockObject_MockObject;
use Test\TestCase;
@@ -38,12 +41,27 @@ class ContactsStoreTest extends TestCase {
/** @var IManager|PHPUnit_Framework_MockObject_MockObject */
private $contactsManager;
+ /** @var IUserManager|PHPUnit_Framework_MockObject_MockObject */
+ private $userManager;
+
+ /** @var IGroupManager|PHPUnit_Framework_MockObject_MockObject */
+ private $groupManager;
+
+ /** @var IConfig|PHPUnit_Framework_MockObject_MockObject */
+ private $config;
+
protected function setUp() {
parent::setUp();
$this->contactsManager = $this->createMock(IManager::class);
- $this->contactsStore = new ContactsStore($this->contactsManager);
+ $this->userManager = $this->createMock(IUserManager::class);
+
+ $this->groupManager = $this->createMock(IGroupManager::class);
+
+ $this->config = $this->createMock(IConfig::class);
+
+ $this->contactsStore = new ContactsStore($this->contactsManager, $this->config, $this->userManager, $this->groupManager);
}
public function testGetContactsWithoutFilter() {