0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-12 03:59:16 +00:00
nextcloud_server/tests/lib/Settings/SectionTest.php
Andy Scherzinger 1f7e2ba599
chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-13 17:41:36 +02:00

22 lines
587 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Settings\Tests\AppInfo;
use OC\Settings\Section;
use Test\TestCase;
class SectionTest extends TestCase {
public function testGetID() {
$this->assertSame('ldap', (new Section('ldap', 'name', 1))->getID());
}
public function testGetName() {
$this->assertSame('name', (new Section('ldap', 'name', 1))->getName());
}
public function testGetPriority() {
$this->assertSame(1, (new Section('ldap', 'name', 1))->getPriority());
}
}