From 9cf3f314fb4a1c386f5b797557d74d0997773031 Mon Sep 17 00:00:00 2001 From: Jamie York Date: Tue, 24 Jun 2025 21:12:34 +0100 Subject: [PATCH] laravel integration test sub dir --- tests/Integration/{ => Laravel}/Fixtures/Component.php | 2 +- tests/Integration/{ => Laravel}/Fixtures/component.blade.php | 0 tests/Integration/{ => Laravel}/Fixtures/view.blade.php | 0 tests/Integration/{ => Laravel}/TestComponentTest.php | 4 ++-- tests/Integration/{ => Laravel}/TestResponseTest.php | 2 +- tests/Integration/{ => Laravel}/TestViewTest.php | 2 +- 6 files changed, 5 insertions(+), 5 deletions(-) rename tests/Integration/{ => Laravel}/Fixtures/Component.php (85%) rename tests/Integration/{ => Laravel}/Fixtures/component.blade.php (100%) rename tests/Integration/{ => Laravel}/Fixtures/view.blade.php (100%) rename tests/Integration/{ => Laravel}/TestComponentTest.php (92%) rename tests/Integration/{ => Laravel}/TestResponseTest.php (98%) rename tests/Integration/{ => Laravel}/TestViewTest.php (96%) 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;