From 7a2945541ae1fe7897194dcfe40623e4b2c5eea5 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Wed, 30 Oct 2024 23:43:10 +0100 Subject: [PATCH] [TASK] Create directory structure for making fine-grained tests (#754) We'll rework and sort the tests into these folders: - `Unit` and `Functional`: for tests that do not call deprecated methods, and where PHPUnit should warn if deprecated methods are called - `UnitDeprecated` and `FunctionalDeprecated`: for tests that call deprecated methods, and where PHPUnit should not warn about those For the time being, we still call all tests with the same configuration. --- tests/Functional/.gitkeep | 0 tests/FunctionalDeprecated/.gitkeep | 0 tests/Unit/.gitkeep | 0 tests/UnitDeprecated/.gitkeep | 0 4 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 tests/Functional/.gitkeep create mode 100644 tests/FunctionalDeprecated/.gitkeep create mode 100644 tests/Unit/.gitkeep create mode 100644 tests/UnitDeprecated/.gitkeep diff --git a/tests/Functional/.gitkeep b/tests/Functional/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/tests/FunctionalDeprecated/.gitkeep b/tests/FunctionalDeprecated/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/tests/Unit/.gitkeep b/tests/Unit/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/tests/UnitDeprecated/.gitkeep b/tests/UnitDeprecated/.gitkeep new file mode 100644 index 00000000..e69de29b