From 94b0315d7aee7efce13fa1bcc34acf36a724fef9 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 20 Sep 2016 14:28:17 +0200 Subject: Fix more tests --- apps/dav/tests/unit/AppInfo/ApplicationTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps') diff --git a/apps/dav/tests/unit/AppInfo/ApplicationTest.php b/apps/dav/tests/unit/AppInfo/ApplicationTest.php index 8656ce93519..bb6cfe67b4d 100644 --- a/apps/dav/tests/unit/AppInfo/ApplicationTest.php +++ b/apps/dav/tests/unit/AppInfo/ApplicationTest.php @@ -51,15 +51,15 @@ class ApplicationTest extends TestCase { public function testContactsManagerSetup() { $app = new Application(); $c = $app->getContainer(); - $c->registerService('CardDavBackend', function($c) { - $service = $this->getMockBuilder('OCA\DAV\CardDAV\CardDavBackend')->disableOriginalConstructor()->getMock(); + $c->registerService(CardDavBackend::class, function() { + $service = $this->createMock(CardDavBackend::class); $service->method('getAddressBooksForUser')->willReturn([]); return $service; }); // assert setupContactsProvider() is proper - /** @var IManager | \PHPUnit_Framework_MockObject_MockObject $cm */ - $cm = $this->getMockBuilder('OCP\Contacts\IManager')->disableOriginalConstructor()->getMock(); + /** @var IManager|\PHPUnit_Framework_MockObject_MockObject $cm */ + $cm = $this->createMock(IManager::class); $app->setupContactsProvider($cm, 'xxx'); $this->assertTrue(true); } -- cgit v1.2.3