Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
This commit is contained in:
Julien Veyssier 2019-06-11 16:06:09 +02:00
Родитель 7afa768663
Коммит c07ce4183f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4141FEE162030638
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -11,18 +11,26 @@
namespace OCA\Maps\Controller;
use \OCA\Maps\AppInfo\Application;
use OCP\AppFramework\Http\TemplateResponse;
class PageControllerTest extends \PHPUnit\Framework\TestCase {
private $controller;
private $userId = 'john';
private $config;
private $app;
private $container;
protected function setUp(): void {
$request = $this->getMockBuilder('OCP\IRequest')->getMock();
$this->app = new Application();
$this->container = $this->app->getContainer();
$c = $this->container;
$this->config = $c->query('ServerContainer')->getConfig();
$this->controller = new PageController(
'maps', $request, $this->userId
'maps', $request, $this->userId, $this->config
);
}