Skip to content

Commit d1d8af0

Browse files
committed
Update tests
1 parent ff1d5a9 commit d1d8af0

File tree

5 files changed

+22
-12
lines changed

5 files changed

+22
-12
lines changed

tests/ApplicationTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<?php
2-
namespace PhpExpress\Tests;
2+
declare(strict_types=1);
3+
4+
namespace Riverside\Express\Tests;
35

46
use PHPUnit\Framework\TestCase;
5-
use PhpExpress\Application;
7+
use Riverside\Express\Application;
68

79
class ApplicationTest extends TestCase
810
{

tests/RequestTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<?php
2-
namespace PhpExpress\Tests;
2+
declare(strict_types=1);
3+
4+
namespace Riverside\Express\Tests;
35

46
use PHPUnit\Framework\TestCase;
5-
use PhpExpress\Request;
7+
use Riverside\Express\Request;
68

79
class RequestTest extends TestCase
810
{

tests/ResponseTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<?php
2-
namespace PhpExpress\Tests;
2+
declare(strict_types=1);
3+
4+
namespace Riverside\Express\Tests;
35

46
use PHPUnit\Framework\TestCase;
5-
use PhpExpress\Response;
7+
use Riverside\Express\Response;
68

79
class ResponseTest extends TestCase
810
{

tests/RouteTest.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
<?php
2-
namespace PhpExpress\Tests;
2+
declare(strict_types=1);
33

4-
use PhpExpress\Application;
4+
namespace Riverside\Express\Tests;
5+
6+
use Riverside\Express\Application;
57
use PHPUnit\Framework\TestCase;
6-
use PhpExpress\Route;
8+
use Riverside\Express\Route;
79

810
class RouteTest extends TestCase
911
{

tests/RouterTest.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
<?php
2-
namespace PhpExpress\Tests;
2+
declare(strict_types=1);
3+
4+
namespace Riverside\Express\Tests;
35

46
use PHPUnit\Framework\TestCase;
5-
use PhpExpress\Router;
6-
use PhpExpress\Route;
7+
use Riverside\Express\Router;
8+
use Riverside\Express\Route;
79

810
class RouterTest extends TestCase
911
{

0 commit comments

Comments
 (0)