diff --git a/tests/Integration/Fixtures/Component.php b/tests/Integration/Laravel/Fixtures/Component.php similarity index 85% rename from tests/Integration/Fixtures/Component.php rename to tests/Integration/Laravel/Fixtures/Component.php index 2beaf81..93b7eab 100644 --- a/tests/Integration/Fixtures/Component.php +++ b/tests/Integration/Laravel/Fixtures/Component.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace Ziadoz\AssertableHtml\Tests\Integration\Fixtures; +namespace Ziadoz\AssertableHtml\Tests\Integration\Laravel\Fixtures; use Illuminate\View\Component as LaravelComponent; use Illuminate\View\View; diff --git a/tests/Integration/Fixtures/component.blade.php b/tests/Integration/Laravel/Fixtures/component.blade.php similarity index 100% rename from tests/Integration/Fixtures/component.blade.php rename to tests/Integration/Laravel/Fixtures/component.blade.php diff --git a/tests/Integration/Fixtures/view.blade.php b/tests/Integration/Laravel/Fixtures/view.blade.php similarity index 100% rename from tests/Integration/Fixtures/view.blade.php rename to tests/Integration/Laravel/Fixtures/view.blade.php diff --git a/tests/Integration/TestComponentTest.php b/tests/Integration/Laravel/TestComponentTest.php similarity index 92% rename from tests/Integration/TestComponentTest.php rename to tests/Integration/Laravel/TestComponentTest.php index 519a702..bf44717 100644 --- a/tests/Integration/TestComponentTest.php +++ b/tests/Integration/Laravel/TestComponentTest.php @@ -2,14 +2,14 @@ declare(strict_types=1); -namespace Ziadoz\AssertableHtml\Tests\Integration; +namespace Ziadoz\AssertableHtml\Tests\Integration\Laravel; use Illuminate\Foundation\Testing\Concerns\InteractsWithViews; use Orchestra\Testbench\TestCase; use Ziadoz\AssertableHtml\AssertableHtmlServiceProvider; use Ziadoz\AssertableHtml\Dom\AssertableDocument; use Ziadoz\AssertableHtml\Dom\AssertableElement; -use Ziadoz\AssertableHtml\Tests\Integration\Fixtures\Component; +use Ziadoz\AssertableHtml\Tests\Integration\Laravel\Fixtures\Component; class TestComponentTest extends TestCase { diff --git a/tests/Integration/TestResponseTest.php b/tests/Integration/Laravel/TestResponseTest.php similarity index 98% rename from tests/Integration/TestResponseTest.php rename to tests/Integration/Laravel/TestResponseTest.php index 3b8d7ab..a567b47 100644 --- a/tests/Integration/TestResponseTest.php +++ b/tests/Integration/Laravel/TestResponseTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace Ziadoz\AssertableHtml\Tests\Integration; +namespace Ziadoz\AssertableHtml\Tests\Integration\Laravel; use Closure; use Illuminate\Foundation\Testing\Concerns\MakesHttpRequests; diff --git a/tests/Integration/TestViewTest.php b/tests/Integration/Laravel/TestViewTest.php similarity index 96% rename from tests/Integration/TestViewTest.php rename to tests/Integration/Laravel/TestViewTest.php index 2c98c38..3698129 100644 --- a/tests/Integration/TestViewTest.php +++ b/tests/Integration/Laravel/TestViewTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace Ziadoz\AssertableHtml\Tests\Integration; +namespace Ziadoz\AssertableHtml\Tests\Integration\Laravel; use Illuminate\Foundation\Testing\Concerns\InteractsWithViews; use Orchestra\Testbench\TestCase;