nextcloud/tests/lib/Settings/SectionTest.php

24 lines
606 B
PHP
Raw Permalink Normal View History

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