for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Mezon\Router\Tests\Simple;
use Mezon\Router\RouterInterface;
use Mezon\Router\Tests\Base\UniversalRouteTestClass;
use Mezon\Router\Tests\Base\BaseRouterUnitTestClass;
use Mezon\Router\SimpleRouter;
/**
*
* @psalm-suppress PropertyNotSetInConstructor
*/
class UniversalRouteUnitTest extends UniversalRouteTestClass
{
* {@inheritdoc}
* @see BaseRouterUnitTestClass::getRouter()
protected function getRouter(): RouterInterface
return new SimpleRouter();
}