fix tests for linkTo
This commit is contained in:
parent
2832fe48ee
commit
c55ae7c319
|
@ -23,14 +23,14 @@ class LegacyUrlGeneratorTest extends TestCase
|
|||
|
||||
/**
|
||||
* @dataProvider provideLinksTo
|
||||
* @covers \Engelsystem\Routing\LegacyUrlGenerator::to
|
||||
* @covers \Engelsystem\Routing\LegacyUrlGenerator::linkTo
|
||||
*
|
||||
* @param string $urlToPath
|
||||
* @param string $willReturn
|
||||
* @param string[] $arguments
|
||||
* @param string $expectedUrl
|
||||
*/
|
||||
public function testTo($urlToPath, $willReturn, $arguments, $expectedUrl)
|
||||
public function testLinkTo($urlToPath, $willReturn, $arguments, $expectedUrl)
|
||||
{
|
||||
$app = new Container();
|
||||
Application::setInstance($app);
|
||||
|
|
|
@ -22,7 +22,7 @@ class UrlGeneratorTest extends TestCase
|
|||
|
||||
/**
|
||||
* @dataProvider provideLinksTo
|
||||
* @covers \Engelsystem\Routing\UrlGenerator::to
|
||||
* @covers \Engelsystem\Routing\UrlGenerator::linkTo
|
||||
*
|
||||
* @param string $path
|
||||
* @param string $willReturn
|
||||
|
@ -30,7 +30,7 @@ class UrlGeneratorTest extends TestCase
|
|||
* @param string[] $arguments
|
||||
* @param string $expectedUrl
|
||||
*/
|
||||
public function testTo($urlToPath, $path, $willReturn, $arguments, $expectedUrl)
|
||||
public function testLinkTo($urlToPath, $path, $willReturn, $arguments, $expectedUrl)
|
||||
{
|
||||
$app = new Container();
|
||||
Application::setInstance($app);
|
||||
|
|
Loading…
Reference in New Issue