13 lines
360 B
PHP
13 lines
360 B
PHP
<?php
|
|
namespace Szurubooru\Tests;
|
|
use Szurubooru\Injector;
|
|
use Szurubooru\Tests\AbstractTestCase;
|
|
|
|
final class ControllerRepositoryTest extends AbstractDatabaseTestCase
|
|
{
|
|
public function testInjection()
|
|
{
|
|
$controllerRepository = Injector::get(\Szurubooru\ControllerRepository::class);
|
|
$this->assertNotEmpty($controllerRepository->getControllers());
|
|
}
|
|
}
|