From fd666dae4eaaabe85fcf7aceca2e89e3a0217b7a Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 24 Mar 2026 22:55:52 +0100 Subject: [PATCH] Move `TestCase` into the `ipl\Sql\Test` namespace `TestCase` was defined in `tests/` which is not part of the distributed library. Dependents such as `ipl-orm` had to work around this with a vendor path mapping to `ipl-sql`'s test directory. Moving it into `src/Test/` makes it a proper member of the `ipl\Sql\Test` testing utilities alongside `SqlAssertions`, `TestAdapter`, and `TestConnection`. --- {tests => src/Test}/TestCase.php | 3 +-- tests/ConfigTest.php | 1 + tests/DeleteTest.php | 1 + tests/FilterProcessorTest.php | 1 + tests/HavingTest.php | 1 + tests/InsertTest.php | 1 + tests/Mssql/SelectTest.php | 2 +- tests/SelectTest.php | 1 + tests/SharedDatabasesTest.php | 1 + tests/UpdateTest.php | 1 + tests/WhereTest.php | 1 + 11 files changed, 11 insertions(+), 3 deletions(-) rename {tests => src/Test}/TestCase.php (87%) diff --git a/tests/TestCase.php b/src/Test/TestCase.php similarity index 87% rename from tests/TestCase.php rename to src/Test/TestCase.php index 71395bc..2421a67 100644 --- a/tests/TestCase.php +++ b/src/Test/TestCase.php @@ -1,9 +1,8 @@