Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ConfigApiControllerTest.php « Controller « unit « tests - github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60d8e8e50823010d6be268881cc877b6cc87b345 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
 * Nextcloud - Gallery
 *
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Olivier Paroz <galleryapps@oparoz.com>
 *
 * @copyright Olivier Paroz 2017
 */

namespace OCA\Gallery\Tests\Controller;

use OCA\Gallery\Controller\ConfigApiController;

/**
 * Class ConfigApiControllerTest
 *
 * @package OCA\Gallery\Controller
 */
class ConfigApiControllerTest extends ConfigControllerTest {

	public function setUp() {
		parent::setUp();
		$this->controller = new ConfigApiController(
			$this->appName,
			$this->request,
			$this->configService,
			$this->logger
		);
	}

}