Skip to content

Commit 27b30f7

Browse files
committed
Move controller tests to Feature namespace
1 parent 64b7471 commit 27b30f7

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

phpunit.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
</include>
77
</coverage>
88
<testsuites>
9+
<testsuite name="Feature">
10+
<directory suffix="Test.php">./tests/Feature</directory>
11+
</testsuite>
912
<testsuite name="Unit">
1013
<directory suffix="Test.php">./tests/Unit</directory>
1114
</testsuite>

tests/Unit/Http/Controllers/EditorJsImageUploadControllerTest.php renamed to tests/Feature/Http/Controllers/EditorJsImageUploadControllerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Tests\Unit\Http\Controllers;
5+
namespace Tests\Feature\Http\Controllers;
66

77
use Advoor\NovaEditorJs\Http\Controllers\EditorJsImageUploadController;
88
use finfo;

tests/Unit/Http/Controllers/EditorJsLinkControllerTest.php renamed to tests/Feature/Http/Controllers/EditorJsLinkControllerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Tests\Unit\Http\Controllers;
5+
namespace Tests\Feature\Http\Controllers;
66

77
use Advoor\NovaEditorJs\Http\Controllers\EditorJsLinkController;
88
use Illuminate\Support\Facades\Http;

0 commit comments

Comments
 (0)