nextcloud/apps/dav/tests/unit/AppInfo/ApplicationTest.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
833 B
PHP
Raw Normal View History

<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
2016-05-25 10:04:15 -04:00
namespace OCA\DAV\Tests\unit\AppInfo;
use OCA\DAV\AppInfo\Application;
2016-09-19 19:15:24 -04:00
use OCA\DAV\CardDAV\CardDavBackend;
use OCA\DAV\CardDAV\ContactsManager;
use Test\TestCase;
/**
* Class ApplicationTest
*
* @group DB
*
* @package OCA\DAV\Tests\Unit\AppInfo
*/
class ApplicationTest extends TestCase {
public function test(): void {
$app = new Application();
$c = $app->getContainer();
// assert service instances in the container are properly setup
2016-09-19 19:15:24 -04:00
$s = $c->query(ContactsManager::class);
$this->assertInstanceOf(ContactsManager::class, $s);
2016-09-19 19:15:24 -04:00
$s = $c->query(CardDavBackend::class);
$this->assertInstanceOf(CardDavBackend::class, $s);
}
}