Skip to content

Commit c49a324

Browse files
committed
csf
1 parent 612067e commit c49a324

File tree

59 files changed

+389
-377
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+389
-377
lines changed

tests/Command/RouteListCommandTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php declare(strict_types=1);
22

3-
namespace Sunrise\Http\Router\Test\Command;
3+
namespace Sunrise\Http\Router\Tests\Command;
44

55
/**
66
* Import classes
77
*/
88
use PHPUnit\Framework\TestCase;
99
use Sunrise\Http\Router\Command\RouteListCommand;
1010
use Sunrise\Http\Router\Router;
11-
use Sunrise\Http\Router\Test\Fixture;
11+
use Sunrise\Http\Router\Tests\Fixtures;
1212
use Symfony\Component\Console\Tester\CommandTester;
1313

1414
/**
@@ -23,9 +23,9 @@ class RouteListCommandTest extends TestCase
2323
public function testRun() : void
2424
{
2525
$routes = [
26-
new Fixture\Route(),
27-
new Fixture\Route(),
28-
new Fixture\Route(),
26+
new Fixtures\Route(),
27+
new Fixtures\Route(),
28+
new Fixtures\Route(),
2929
];
3030

3131
$router = new Router();

tests/Exception/BadRequestExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace Sunrise\Http\Router\Test\Exception;
3+
namespace Sunrise\Http\Router\Tests\Exception;
44

55
/**
66
* Import classes

tests/Exception/ExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace Sunrise\Http\Router\Test\Exception;
3+
namespace Sunrise\Http\Router\Tests\Exception;
44

55
/**
66
* Import classes

tests/Exception/InvalidArgumentExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace Sunrise\Http\Router\Test\Exception;
3+
namespace Sunrise\Http\Router\Tests\Exception;
44

55
/**
66
* Import classes

tests/Exception/InvalidAttributeValueExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace Sunrise\Http\Router\Test\Exception;
3+
namespace Sunrise\Http\Router\Tests\Exception;
44

55
/**
66
* Import classes

tests/Exception/InvalidDescriptorExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace Sunrise\Http\Router\Test\Exception;
3+
namespace Sunrise\Http\Router\Tests\Exception;
44

55
/**
66
* Import classes

tests/Exception/InvalidLoaderResourceExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace Sunrise\Http\Router\Test\Exception;
3+
namespace Sunrise\Http\Router\Tests\Exception;
44

55
/**
66
* Import classes

tests/Exception/InvalidPathExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace Sunrise\Http\Router\Test\Exception;
3+
namespace Sunrise\Http\Router\Tests\Exception;
44

55
/**
66
* Import classes

tests/Exception/MethodNotAllowedExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace Sunrise\Http\Router\Test\Exception;
3+
namespace Sunrise\Http\Router\Tests\Exception;
44

55
/**
66
* Import classes

tests/Exception/MissingAttributeValueExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace Sunrise\Http\Router\Test\Exception;
3+
namespace Sunrise\Http\Router\Tests\Exception;
44

55
/**
66
* Import classes

0 commit comments

Comments
 (0)