diff --git a/tests/_files/AbstractTest.php b/tests/_files/abstract/with-test-suffix/AbstractTest.php similarity index 100% rename from tests/_files/AbstractTest.php rename to tests/_files/abstract/with-test-suffix/AbstractTest.php diff --git a/tests/_files/abstract/with-test-suffix/ConcreteTestClassExtendingAbstractTestClassWithTestSuffixTest.php b/tests/_files/abstract/with-test-suffix/ConcreteTestClassExtendingAbstractTestClassWithTestSuffixTest.php new file mode 100644 index 00000000000..f7cf69ad134 --- /dev/null +++ b/tests/_files/abstract/with-test-suffix/ConcreteTestClassExtendingAbstractTestClassWithTestSuffixTest.php @@ -0,0 +1,14 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\TestFixture; + +final class ConcreteTestClassExtendingAbstractTestClassWithTestSuffixTest extends AbstractTest +{ +} diff --git a/tests/_files/AbstractTestCase.php b/tests/_files/abstract/without-test-suffix/AbstractTestCase.php similarity index 100% rename from tests/_files/AbstractTestCase.php rename to tests/_files/abstract/without-test-suffix/AbstractTestCase.php diff --git a/tests/_files/abstract/without-test-suffix/ConcreteTestClassExtendingAbstractTestClassWithoutTestSuffixTest.php b/tests/_files/abstract/without-test-suffix/ConcreteTestClassExtendingAbstractTestClassWithoutTestSuffixTest.php new file mode 100644 index 00000000000..528d679382f --- /dev/null +++ b/tests/_files/abstract/without-test-suffix/ConcreteTestClassExtendingAbstractTestClassWithoutTestSuffixTest.php @@ -0,0 +1,14 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\TestFixture; + +final class ConcreteTestClassExtendingAbstractTestClassWithoutTestSuffixTest extends AbstractTestCase +{ +} diff --git a/tests/end-to-end/generic/abstract-test-class-with-test-suffix.phpt b/tests/end-to-end/generic/abstract-test-class/abstract-test-class-with-test-suffix.phpt similarity index 56% rename from tests/end-to-end/generic/abstract-test-class-with-test-suffix.phpt rename to tests/end-to-end/generic/abstract-test-class/abstract-test-class-with-test-suffix.phpt index 5d6479c9ee5..6b21c90bd42 100644 --- a/tests/end-to-end/generic/abstract-test-class-with-test-suffix.phpt +++ b/tests/end-to-end/generic/abstract-test-class/abstract-test-class-with-test-suffix.phpt @@ -1,12 +1,12 @@ --TEST-- -phpunit ../../_files/AbstractTest.php +phpunit ../../../_files/abstract/with-test-suffix/AbstractTest.php --FILE--