Skip to content

Commit

Permalink
* move phpunit tests from be to symfony
Browse files Browse the repository at this point in the history
  • Loading branch information
n0099 committed Oct 9, 2024
1 parent 0302713 commit b726482
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests\Feature\App\Eloquent\Model\Post;
namespace App\Tests\Eloquent\Model\Post;

use App\Eloquent\Model\Post\Post;
use App\Eloquent\Model\Post\PostFactory;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests\Feature\App\Eloquent;
namespace App\Tests\Eloquent;

use App\Eloquent\ModelAttributeMaker;
use Illuminate\Database\Eloquent\Casts\Attribute;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace Tests\Feature\App\Exceptions;
namespace App\Tests\Exceptions;

use App\Exceptions\Handler;
use Illuminate\Container\Container;
use Illuminate\Validation\ValidationException;
use Illuminate\Validation\Factory;
use Illuminate\Validation\ValidationException;
use PHPUnit\Framework\Attributes\CoversClass;
use ReflectionMethod;
use Symfony\Component\HttpFoundation\Response;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests\Feature\App;
namespace App\Tests;

use App\Helper;
use Illuminate\Http\Exceptions\HttpResponseException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests\Feature\App\Http\Middleware;
namespace App\Tests\Http\Middleware;

use App\Http\Middleware\DumpJsonResponse;
use Illuminate\Http\JsonResponse;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests\Feature\App\Http\PostsQuery;
namespace App\Tests\Http\PostsQuery;

use App\Eloquent\Model\Post\Post;
use App\Eloquent\Model\Post\Reply;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests\Feature\App\Http\PostsQuery;
namespace App\Tests\Http\PostsQuery;

use App\Eloquent\Model\Post\Post;
use App\Eloquent\Model\Post\Reply;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests\Feature\App\Http\PostsQuery;
namespace App\Tests\Http\PostsQuery;

use App\Helper;
use App\Http\PostsQuery\ParamsValidator;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests\Unit\App\Http\PostsQuery;
namespace App\Tests\Http\PostsQuery;

use App\Http\PostsQuery\QueryParam;
use PHPUnit\Framework\Attributes\CoversClass;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests\Unit\App\Http\PostsQuery;
namespace App\Tests\Http\PostsQuery;

use App\Helper;
use App\Http\PostsQuery\QueryParam;
Expand Down

0 comments on commit b726482

Please sign in to comment.