move tests to GlobPatternTests folder and add comments for test cases

This commit is contained in:
Mohammad Zahed
2023-06-12 12:53:27 +03:00
parent 40fd06c0d0
commit 801346b894
3 changed files with 4 additions and 2 deletions

View File

@ -5,9 +5,11 @@ use Tests\CustomTestCaseInSubFolders\SubFolder\SubFolder\CustomTestCaseInSubFold
uses(CustomTestCaseInSubFolder::class)->in('PHPUnit/CustomTestCaseInSubFolders/SubFolder/SubFolder');
uses(CustomTestCase::class)->in('PHPUnit/CustomTestCase/SubFolder/*/');
// test case for all the directories inside PHPUnit/GlobPatternTests/SubFolder/
uses(CustomTestCase::class)->in('PHPUnit/GlobPatternTests/SubFolder/*/');
uses(CustomTestCase::class)->in('PHPUnit/CustomTestCase/SubFolder2/*AsPattern.php');
// test case for all the files that end with AsPattern.php inside PHPUnit/GlobPatternTests/SubFolder2/
uses(CustomTestCase::class)->in('PHPUnit/GlobPatternTests/SubFolder2/*AsPattern.php');
uses()->group('integration')->in('Visual');