28 lines
705 B
PHP
28 lines
705 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
// SPDX-FileCopyrightText: Xéfir Destiny <xefir@crystalyx.net>
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace OCA\RePod\Tests\Unit\Controller;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
|
|
class PageControllerTest extends TestCase {
|
|
private PageController $controller;
|
|
|
|
public function setUp(): void {
|
|
$request = $this->getMockBuilder(\OCP\IRequest::class)->getMock();
|
|
$this->controller = new PageController($request);
|
|
}
|
|
|
|
public function testIndex(): void {
|
|
$result = $this->controller->index();
|
|
|
|
$this->assertEquals('main', $result->getTemplateName());
|
|
$this->assertTrue($result instanceof TemplateResponse);
|
|
}
|
|
}
|