This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/tests/ControllerRepositoryTest.php

12 lines
312 B
PHP
Raw Normal View History

<?php
namespace Szurubooru\Tests;
class ControllerRepositoryTest extends \Szurubooru\Tests\AbstractTestCase
{
public function testInjection()
{
$controllerRepository = \Szurubooru\Injector::get(\Szurubooru\ControllerRepository::class);
$this->assertNotEmpty($controllerRepository->getControllers());
}
}