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\Standart;
use PHPUnit\Framework\TestCase;
/**
*
* @psalm-suppress PropertyNotSetInConstructor
*/
class RouterUtilsUnitTest extends TestCase
{
* Datapdovider for the test testGetCallableDescription
* @return array testing data
public function getCallableDescriptionDataProvider(): array
return [
[
'string-processor',
'string-processor'
],
$this,
'getCallableDescriptionDataProvider'
get_class($this) . '::getCallableDescriptionDataProvider'
'class-name',
'static-method-name'
'class-name::static-method-name'
'a:1:{i:0;s:16:"string-processor";}'
]
];
}
* Testing getCallableDescription method
* @param mixed $callable
* @param string $result
* @dataProvider getCallableDescriptionDataProvider
public function testGetCallableDescription($callable, string $result): void
// test body and assertions
$this->assertEquals($result, \Mezon\Router\Utils::getCallableDescription($callable));
* Testing convertMethodNameToRoute
public function testMethodNameToRouteConversion(): void
// test body
$result = \Mezon\Router\Utils::convertMethodNameToRoute('actionSomeRouter');
// assertions
$this->assertEquals('some-router', $result);