nextcloud/apps/files_external/tests/Settings/SectionTest.php

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

50 lines
1.2 KiB
PHP
Raw Normal View History

2016-08-15 10:24:56 -04:00
<?php
/**
* 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\Files_External\Tests\Settings;
use OCA\Files_External\Settings\Section;
use OCP\IL10N;
use OCP\IURLGenerator;
2016-08-15 10:24:56 -04:00
use Test\TestCase;
class SectionTest extends TestCase {
/** @var IL10N */
private $l;
/** @var IURLGenerator */
private $urlGenerator;
2016-08-15 10:24:56 -04:00
/** @var Section */
private $section;
protected function setUp(): void {
2016-08-15 10:24:56 -04:00
parent::setUp();
$this->urlGenerator = $this->getMockBuilder(IURLGenerator::class)->disableOriginalConstructor()->getMock();
$this->l = $this->getMockBuilder(IL10N::class)->disableOriginalConstructor()->getMock();
2016-08-15 10:24:56 -04:00
$this->section = new Section(
$this->urlGenerator,
2016-08-15 10:24:56 -04:00
$this->l
);
}
public function testGetID() {
$this->assertSame('externalstorages', $this->section->getID());
}
public function testGetName() {
$this->l
->expects($this->once())
->method('t')
->with('External storage')
->willReturn('External storage');
2016-08-15 10:24:56 -04:00
$this->assertSame('External storage', $this->section->getName());
2016-08-15 10:24:56 -04:00
}
public function testGetPriority() {
$this->assertSame(10, $this->section->getPriority());
}
}