Skip to content

Add Windows tests to GHA #7491

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed

Conversation

paulbalandan
Copy link
Member

Description
Adds Windows testing to the GitHub Actions pipeline. Added only to PHPUnit testing using PHP 8.1 only.

Checklist:

  • Securely signed commits
  • Component(s) with PHPDoc blocks, only if necessary or adds value
  • Unit testing, with >80% coverage
  • User guide updated
  • Conforms to style guide

@paulbalandan paulbalandan added the github_actions Pull requests that update Github_actions code label May 11, 2023
@paulbalandan paulbalandan marked this pull request as draft May 11, 2023 03:34
@paulbalandan paulbalandan force-pushed the windows-tests branch 8 times, most recently from a863311 to 5df54f9 Compare May 13, 2023 15:16
@MGatner MGatner closed this Jul 3, 2023
@MGatner MGatner reopened this Jul 3, 2023
@kenjis
Copy link
Member

kenjis commented Jul 13, 2023

Because of the difference of the directory separators, 89 tests fails.

There were 89 failures:

1) CodeIgniter\Autoloader\AutoloaderTest::testInitializeTwice
Failed asserting that two strings are identical.
--- Expected
+++ Actual
@@ @@
-'ROOTPATH/app'
+'ROOTPATH\app'

D:\a\CodeIgniter4\CodeIgniter4\tests\system\Autoloader\AutoloaderTest.php:88
2023-07-03T10:42:10.1988993Z There were 89 failures:
2023-07-03T10:42:10.1989259Z 
2023-07-03T10:42:10.1989571Z 1) CodeIgniter\Autoloader\AutoloaderTest::testInitializeTwice
2023-07-03T10:42:10.2023917Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2024581Z --- Expected
2023-07-03T10:42:10.2024986Z +++ Actual
2023-07-03T10:42:10.2025345Z @@ @@
2023-07-03T10:42:10.2025748Z -'ROOTPATH/app'
2023-07-03T10:42:10.2026113Z +'ROOTPATH\app'
2023-07-03T10:42:10.2026376Z 
2023-07-03T10:42:10.2026754Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Autoloader\AutoloaderTest.php:88
2023-07-03T10:42:10.2027208Z 
2023-07-03T10:42:10.2027671Z 2) CodeIgniter\Autoloader\AutoloaderTest::testComposerNamespaceDoesNotOverwriteConfigAutoloadPsr4
2023-07-03T10:42:10.2028334Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2028741Z --- Expected
2023-07-03T10:42:10.2029087Z +++ Actual
2023-07-03T10:42:10.2029438Z @@ @@
2023-07-03T10:42:10.2029824Z -'/Config/Autoload/Psr/Log/'
2023-07-03T10:42:10.2030279Z +'/Config/Autoload/Psr/Log\'
2023-07-03T10:42:10.2030557Z 
2023-07-03T10:42:10.2030901Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Autoloader\AutoloaderTest.php:288
2023-07-03T10:42:10.2031279Z 
2023-07-03T10:42:10.2031685Z 3) CodeIgniter\Autoloader\FileLocatorTest::testLocateFileNotNamespacedFindsInAppDirectory
2023-07-03T10:42:10.2032438Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2032846Z --- Expected
2023-07-03T10:42:10.2033168Z +++ Actual
2023-07-03T10:42:10.2033498Z @@ @@
2023-07-03T10:42:10.2034239Z -'D:\a\CodeIgniter4\CodeIgniter4\app\Controllers/Home.php'
2023-07-03T10:42:10.2034822Z +'D:\a\CodeIgniter4\CodeIgniter4\app\Controllers\Home.php'
2023-07-03T10:42:10.2035162Z 
2023-07-03T10:42:10.2035505Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Autoloader\FileLocatorTest.php:60
2023-07-03T10:42:10.2035904Z 
2023-07-03T10:42:10.2036358Z 4) CodeIgniter\Autoloader\FileLocatorTest::testLocateFileNotNamespacedFindsWithFolderInAppDirectory
2023-07-03T10:42:10.2037335Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2037708Z --- Expected
2023-07-03T10:42:10.2038028Z +++ Actual
2023-07-03T10:42:10.2038360Z @@ @@
2023-07-03T10:42:10.2038881Z -'D:\a\CodeIgniter4\CodeIgniter4\app\Views/welcome_message.php'
2023-07-03T10:42:10.2039453Z +'D:\a\CodeIgniter4\CodeIgniter4\app\Views\welcome_message.php'
2023-07-03T10:42:10.2040059Z 
2023-07-03T10:42:10.2040462Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Autoloader\FileLocatorTest.php:76
2023-07-03T10:42:10.2040874Z 
2023-07-03T10:42:10.2041322Z 5) CodeIgniter\Autoloader\FileLocatorTest::testLocateFileNotNamespacedWorksInNestedAppDirectory
2023-07-03T10:42:10.2042378Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2042820Z --- Expected
2023-07-03T10:42:10.2043145Z +++ Actual
2023-07-03T10:42:10.2043483Z @@ @@
2023-07-03T10:42:10.2043990Z -'D:\a\CodeIgniter4\CodeIgniter4\app\Controllers/Home.php'
2023-07-03T10:42:10.2044592Z +'D:\a\CodeIgniter4\CodeIgniter4\app\Controllers\Home.php'
2023-07-03T10:42:10.2044927Z 
2023-07-03T10:42:10.2045222Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Autoloader\FileLocatorTest.php:95
2023-07-03T10:42:10.2045616Z 
2023-07-03T10:42:10.2045971Z 6) CodeIgniter\Autoloader\FileLocatorTest::testLocateFileWithFolderNameInFile
2023-07-03T10:42:10.2047173Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2047579Z --- Expected
2023-07-03T10:42:10.2047901Z +++ Actual
2023-07-03T10:42:10.2048236Z @@ @@
2023-07-03T10:42:10.2048768Z -'D:\a\CodeIgniter4\CodeIgniter4\app\Views/errors/html/error_404.php'
2023-07-03T10:42:10.2049413Z +'D:\a\CodeIgniter4\CodeIgniter4\app\/Views/errors/html/error_404.php'
2023-07-03T10:42:10.2049760Z 
2023-07-03T10:42:10.2050061Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Autoloader\FileLocatorTest.php:105
2023-07-03T10:42:10.2050457Z 
2023-07-03T10:42:10.2050866Z 7) CodeIgniter\Autoloader\FileLocatorTest::testLocateFileNotNamespacedWithFolderNameInFile
2023-07-03T10:42:10.2051938Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2052342Z --- Expected
2023-07-03T10:42:10.2052704Z +++ Actual
2023-07-03T10:42:10.2052991Z @@ @@
2023-07-03T10:42:10.2053499Z -'D:\a\CodeIgniter4\CodeIgniter4\app\Views/welcome_message.php'
2023-07-03T10:42:10.2054112Z +'D:\a\CodeIgniter4\CodeIgniter4\app\Views\welcome_message.php'
2023-07-03T10:42:10.2054453Z 
2023-07-03T10:42:10.2054791Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Autoloader\FileLocatorTest.php:115
2023-07-03T10:42:10.2055187Z 
2023-07-03T10:42:10.2055551Z 8) CodeIgniter\Autoloader\FileLocatorTest::testLocateFileCanFindNamespacedView
2023-07-03T10:42:10.2056634Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2057040Z --- Expected
2023-07-03T10:42:10.2057403Z +++ Actual
2023-07-03T10:42:10.2057732Z @@ @@
2023-07-03T10:42:10.2058211Z -'D:\a\CodeIgniter4\CodeIgniter4\app\Views/errors/html/error_404.php'
2023-07-03T10:42:10.2058844Z +'D:\a\CodeIgniter4\CodeIgniter4\app\Views/errors\/html/error_404.php'
2023-07-03T10:42:10.2059193Z 
2023-07-03T10:42:10.2059531Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Autoloader\FileLocatorTest.php:125
2023-07-03T10:42:10.2059925Z 
2023-07-03T10:42:10.2060307Z 9) CodeIgniter\Autoloader\FileLocatorTest::testLocateFileCanFindNestedNamespacedView
2023-07-03T10:42:10.2061404Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2061765Z --- Expected
2023-07-03T10:42:10.2062130Z +++ Actual
2023-07-03T10:42:10.2062417Z @@ @@
2023-07-03T10:42:10.2063098Z -'D:\a\CodeIgniter4\CodeIgniter4\app\Views/errors/html/error_404.php'
2023-07-03T10:42:10.2063744Z +'D:\a\CodeIgniter4\CodeIgniter4\app\Views/errors\/html/error_404.php'
2023-07-03T10:42:10.2064093Z 
2023-07-03T10:42:10.2064477Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Autoloader\FileLocatorTest.php:134
2023-07-03T10:42:10.2064830Z 
2023-07-03T10:42:10.2065305Z 10) CodeIgniter\Autoloader\FileLocatorTest::testLocateFileCanFindNamespacedViewWhenVendorHasTwoNamespaces
2023-07-03T10:42:10.2066131Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2066534Z --- Expected
2023-07-03T10:42:10.2066899Z +++ Actual
2023-07-03T10:42:10.2067223Z @@ @@
2023-07-03T10:42:10.2067708Z -'D:\a\CodeIgniter4\CodeIgniter4\tests/_support/View/Views/simple.php'
2023-07-03T10:42:10.2068353Z +'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\/View/Views/simple.php'
2023-07-03T10:42:10.2068711Z 
2023-07-03T10:42:10.2069049Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Autoloader\FileLocatorTest.php:143
2023-07-03T10:42:10.2069446Z 
2023-07-03T10:42:10.2069803Z 11) CodeIgniter\Autoloader\FileLocatorTest::testLocateFileWithProperNamespace
2023-07-03T10:42:10.2070852Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2071287Z --- Expected
2023-07-03T10:42:10.2071652Z +++ Actual
2023-07-03T10:42:10.2071987Z @@ @@
2023-07-03T10:42:10.2072465Z -'D:\a\CodeIgniter4\CodeIgniter4\tests/_support/View/Views/simple.php'
2023-07-03T10:42:10.2073123Z +'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\/View/Views/simple.php'
2023-07-03T10:42:10.2073479Z 
2023-07-03T10:42:10.2073817Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Autoloader\FileLocatorTest.php:166
2023-07-03T10:42:10.2074224Z 
2023-07-03T10:42:10.2074525Z 12) CodeIgniter\Autoloader\FileLocatorTest::testSearchSimple
2023-07-03T10:42:10.2075635Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2076033Z --- Expected
2023-07-03T10:42:10.2076400Z +++ Actual
2023-07-03T10:42:10.2076729Z @@ @@
2023-07-03T10:42:10.2077180Z -'D:\a\CodeIgniter4\CodeIgniter4\app\Config/App.php'
2023-07-03T10:42:10.2077740Z +'D:\a\CodeIgniter4\CodeIgniter4\app\Config\App.php'
2023-07-03T10:42:10.2078055Z 
2023-07-03T10:42:10.2078399Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Autoloader\FileLocatorTest.php:175
2023-07-03T10:42:10.2078800Z 
2023-07-03T10:42:10.2079138Z 13) CodeIgniter\Autoloader\FileLocatorTest::testSearchWithFileExtension
2023-07-03T10:42:10.2080451Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2080856Z --- Expected
2023-07-03T10:42:10.2081215Z +++ Actual
2023-07-03T10:42:10.2081547Z @@ @@
2023-07-03T10:42:10.2081980Z -'D:\a\CodeIgniter4\CodeIgniter4\app\Config/App.php'
2023-07-03T10:42:10.2082542Z +'D:\a\CodeIgniter4\CodeIgniter4\app\Config\App.php'
2023-07-03T10:42:10.2082856Z 
2023-07-03T10:42:10.2083195Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Autoloader\FileLocatorTest.php:184
2023-07-03T10:42:10.2083584Z 
2023-07-03T10:42:10.2083938Z 14) CodeIgniter\Autoloader\FileLocatorTest::testSearchPrioritizeSystemOverApp
2023-07-03T10:42:10.2085769Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2086205Z --- Expected
2023-07-03T10:42:10.2086568Z +++ Actual
2023-07-03T10:42:10.2086930Z @@ @@
2023-07-03T10:42:10.2087263Z  Array &0 (
2023-07-03T10:42:10.2087780Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\system\Language/en/Validation.php'
2023-07-03T10:42:10.2088485Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\app\Language/en/Validation.php'
2023-07-03T10:42:10.2089140Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\system\Language\en\Validation.php'
2023-07-03T10:42:10.2089774Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\app\Language\en\Validation.php'
2023-07-03T10:42:10.2090193Z  )
2023-07-03T10:42:10.2090431Z 
2023-07-03T10:42:10.2090774Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Autoloader\FileLocatorTest.php:211
2023-07-03T10:42:10.2091198Z 
2023-07-03T10:42:10.2091542Z 15) CodeIgniter\Cache\Handlers\FileHandlerTest::testNewWithNonWritablePath
2023-07-03T10:42:10.2092361Z Failed asserting that exception of type "CodeIgniter\Cache\Exceptions\CacheException" is thrown.
2023-07-03T10:42:10.2092763Z 
2023-07-03T10:42:10.2093009Z 16) CodeIgniter\Cache\Handlers\FileHandlerTest::testSave
2023-07-03T10:42:10.2093503Z Failed asserting that true is false.
2023-07-03T10:42:10.2093793Z 
2023-07-03T10:42:10.2094140Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Cache\Handlers\FileHandlerTest.php:140
2023-07-03T10:42:10.2094535Z 
2023-07-03T10:42:10.2094983Z 17) CodeIgniter\Cache\Handlers\FileHandlerTest::testSaveMode with data set #0 (416, '640')
2023-07-03T10:42:10.2098091Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2098463Z --- Expected
2023-07-03T10:42:10.2098839Z +++ Actual
2023-07-03T10:42:10.2099192Z @@ @@
2023-07-03T10:42:10.2099514Z -'640'
2023-07-03T10:42:10.2099865Z +'666'
2023-07-03T10:42:10.2100108Z 
2023-07-03T10:42:10.2100454Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Cache\Handlers\FileHandlerTest.php:285
2023-07-03T10:42:10.2100864Z 
2023-07-03T10:42:10.2101312Z 18) CodeIgniter\Cache\Handlers\FileHandlerTest::testSaveMode with data set #1 (384, '600')
2023-07-03T10:42:10.2102750Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2103120Z --- Expected
2023-07-03T10:42:10.2103469Z +++ Actual
2023-07-03T10:42:10.2103820Z @@ @@
2023-07-03T10:42:10.2104184Z -'600'
2023-07-03T10:42:10.2104501Z +'666'
2023-07-03T10:42:10.2104744Z 
2023-07-03T10:42:10.2105108Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Cache\Handlers\FileHandlerTest.php:285
2023-07-03T10:42:10.2105506Z 
2023-07-03T10:42:10.2105940Z 19) CodeIgniter\Cache\Handlers\FileHandlerTest::testSaveMode with data set #2 (432, '660')
2023-07-03T10:42:10.2107776Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2108236Z --- Expected
2023-07-03T10:42:10.2108593Z +++ Actual
2023-07-03T10:42:10.2108943Z @@ @@
2023-07-03T10:42:10.2109309Z -'660'
2023-07-03T10:42:10.2109625Z +'666'
2023-07-03T10:42:10.2109863Z 
2023-07-03T10:42:10.2110221Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Cache\Handlers\FileHandlerTest.php:285
2023-07-03T10:42:10.2110637Z 
2023-07-03T10:42:10.2111077Z 20) CodeIgniter\Cache\Handlers\FileHandlerTest::testSaveMode with data set #3 (511, '777')
2023-07-03T10:42:10.2112456Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2112887Z --- Expected
2023-07-03T10:42:10.2113235Z +++ Actual
2023-07-03T10:42:10.2113758Z @@ @@
2023-07-03T10:42:10.2114082Z -'777'
2023-07-03T10:42:10.2114441Z +'666'
2023-07-03T10:42:10.2114688Z 
2023-07-03T10:42:10.2115086Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Cache\Handlers\FileHandlerTest.php:285
2023-07-03T10:42:10.2115497Z 
2023-07-03T10:42:10.2115788Z 21) CodeIgniter\Commands\RoutesTest::testRoutesCommand
2023-07-03T10:42:10.2116888Z Failed asserting that '+---------+---------+---------------+----------------------------------------+----------------+---------------+\r\n
2023-07-03T10:42:10.2117460Z | Method  | Route   | Name          | Handler                                | Before Filters | After Filters |\r\n
2023-07-03T10:42:10.2118197Z +---------+---------+---------------+----------------------------------------+----------------+---------------+\r\n
2023-07-03T10:42:10.2119073Z | GET     | /       | »             | \App\Controllers\Home::index           |                | toolbar       |\r\n
2023-07-03T10:42:10.2119717Z | GET     | closure | »             | (Closure)                              |                | toolbar       |\r\n
2023-07-03T10:42:10.2120460Z | GET     | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2121200Z | HEAD    | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2121987Z | POST    | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2122881Z | PUT     | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2123670Z | DELETE  | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2124398Z | OPTIONS | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2125094Z | TRACE   | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2125793Z | CONNECT | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2126477Z | CLI     | testing | testing-index | \App\Controllers\TestController::index |                |               |\r\n
2023-07-03T10:42:10.2127073Z +---------+---------+---------------+----------------------------------------+----------------+---------------+\r\n
2023-07-03T10:42:10.2283706Z \r\n
2023-07-03T10:42:10.2284404Z ' contains "+---------+---------+---------------+----------------------------------------+----------------+---------------+
2023-07-03T10:42:10.2285752Z | Method  | Route   | Name          | Handler                                | Before Filters | After Filters |
2023-07-03T10:42:10.2286481Z +---------+---------+---------------+----------------------------------------+----------------+---------------+
2023-07-03T10:42:10.2292093Z | GET     | /       | »             | \App\Controllers\Home::index           |                | toolbar       |
2023-07-03T10:42:10.2293025Z | GET     | closure | »             | (Closure)                              |                | toolbar       |
2023-07-03T10:42:10.2294866Z | GET     | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2295641Z | HEAD    | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2296489Z | POST    | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2297954Z | PUT     | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2298667Z | DELETE  | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2299246Z | OPTIONS | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2300155Z | TRACE   | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2300804Z | CONNECT | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2301439Z | CLI     | testing | testing-index | \App\Controllers\TestController::index |                |               |
2023-07-03T10:42:10.2302031Z +---------+---------+---------------+----------------------------------------+----------------+---------------+".
2023-07-03T10:42:10.2302329Z 
2023-07-03T10:42:10.2302558Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Commands\RoutesTest.php:77
2023-07-03T10:42:10.2302822Z 
2023-07-03T10:42:10.2303026Z 22) CodeIgniter\Commands\RoutesTest::testRoutesCommandSortByHandler
2023-07-03T10:42:10.2303677Z Failed asserting that '+---------+---------+---------------+----------------------------------------+----------------+---------------+\r\n
2023-07-03T10:42:10.2305287Z | Method  | Route   | Name          | Handler ↓                              | Before Filters | After Filters |\r\n
2023-07-03T10:42:10.2305874Z +---------+---------+---------------+----------------------------------------+----------------+---------------+\r\n
2023-07-03T10:42:10.2306389Z | GET     | closure | »             | (Closure)                              |                | toolbar       |\r\n
2023-07-03T10:42:10.2308002Z | GET     | /       | »             | \App\Controllers\Home::index           |                | toolbar       |\r\n
2023-07-03T10:42:10.2308623Z | GET     | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2309404Z | HEAD    | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2310022Z | POST    | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2310659Z | PUT     | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2311267Z | DELETE  | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2311878Z | OPTIONS | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2312523Z | TRACE   | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2313509Z | CONNECT | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |\r\n
2023-07-03T10:42:10.2314105Z | CLI     | testing | testing-index | \App\Controllers\TestController::index |                |               |\r\n
2023-07-03T10:42:10.2314685Z +---------+---------+---------------+----------------------------------------+----------------+---------------+\r\n
2023-07-03T10:42:10.2315039Z \r\n
2023-07-03T10:42:10.2315509Z ' contains "+---------+---------+---------------+----------------------------------------+----------------+---------------+
2023-07-03T10:42:10.2316084Z | Method  | Route   | Name          | Handler ↓                              | Before Filters | After Filters |
2023-07-03T10:42:10.2316643Z +---------+---------+---------------+----------------------------------------+----------------+---------------+
2023-07-03T10:42:10.2317278Z | GET     | closure | »             | (Closure)                              |                | toolbar       |
2023-07-03T10:42:10.2317849Z | GET     | /       | »             | \App\Controllers\Home::index           |                | toolbar       |
2023-07-03T10:42:10.2318438Z | GET     | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2319027Z | HEAD    | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2319779Z | POST    | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2320360Z | PUT     | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2320993Z | DELETE  | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2321634Z | OPTIONS | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2322260Z | TRACE   | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2323005Z | CONNECT | testing | testing-index | \App\Controllers\TestController::index |                | toolbar       |
2023-07-03T10:42:10.2323625Z | CLI     | testing | testing-index | \App\Controllers\TestController::index |                |               |
2023-07-03T10:42:10.2324229Z +---------+---------+---------------+----------------------------------------+----------------+---------------+".
2023-07-03T10:42:10.2324513Z 
2023-07-03T10:42:10.2324732Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Commands\RoutesTest.php:103
2023-07-03T10:42:10.2324959Z 
2023-07-03T10:42:10.2325186Z 23) CodeIgniter\Commands\RoutesTest::testRoutesCommandAutoRouteImproved
2023-07-03T10:42:10.2326716Z Failed asserting that '+------------+--------------------------------+---------------+-----------------------------------------------------+----------------+---------------+\r\n
2023-07-03T10:42:10.2327326Z | Method     | Route                          | Name          | Handler                                             | Before Filters | After Filters |\r\n
2023-07-03T10:42:10.2328145Z +------------+--------------------------------+---------------+-----------------------------------------------------+----------------+---------------+\r\n
2023-07-03T10:42:10.2328868Z | GET        | /                              | »             | \App\Controllers\Home::index                        |                | toolbar       |\r\n
2023-07-03T10:42:10.2329423Z | GET        | closure                        | »             | (Closure)                                           |                | toolbar       |\r\n
2023-07-03T10:42:10.2330071Z | GET        | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2330779Z | HEAD       | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2331443Z | POST       | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2332146Z | PUT        | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2333002Z | DELETE     | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2333709Z | OPTIONS    | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2334443Z | TRACE      | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2335144Z | CONNECT    | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2335843Z | CLI        | testing                        | testing-index | \App\Controllers\TestController::index              |                |               |\r\n
2023-07-03T10:42:10.2336504Z | GET(auto)  | newautorouting                 |               | \Tests\Support\Controllers\Newautorouting::getIndex |                | toolbar       |\r\n
2023-07-03T10:42:10.2337076Z | POST(auto) | newautorouting/save/../..[/..] |               | \Tests\Support\Controllers\Newautorouting::postSave |                | toolbar       |\r\n
2023-07-03T10:42:10.2337912Z +------------+--------------------------------+---------------+-----------------------------------------------------+----------------+---------------+\r\n
2023-07-03T10:42:10.2338334Z \r\n
2023-07-03T10:42:10.2338927Z ' contains "+------------+--------------------------------+---------------+-----------------------------------------------------+----------------+---------------+
2023-07-03T10:42:10.2339488Z | Method     | Route                          | Name          | Handler                                             | Before Filters | After Filters |
2023-07-03T10:42:10.2340109Z +------------+--------------------------------+---------------+-----------------------------------------------------+----------------+---------------+
2023-07-03T10:42:10.2340841Z | GET        | /                              | »             | \App\Controllers\Home::index                        |                | toolbar       |
2023-07-03T10:42:10.2341384Z | GET        | closure                        | »             | (Closure)                                           |                | toolbar       |
2023-07-03T10:42:10.2342138Z | GET        | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2342953Z | HEAD       | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2343649Z | POST       | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2344364Z | PUT        | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2345056Z | DELETE     | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2345735Z | OPTIONS    | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2346438Z | TRACE      | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2347130Z | CONNECT    | testing                        | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2347969Z | CLI        | testing                        | testing-index | \App\Controllers\TestController::index              |                |               |
2023-07-03T10:42:10.2348476Z | GET(auto)  | newautorouting                 |               | \Tests\Support\Controllers\Newautorouting::getIndex |                | toolbar       |
2023-07-03T10:42:10.2349044Z | POST(auto) | newautorouting/save/../..[/..] |               | \Tests\Support\Controllers\Newautorouting::postSave |                | toolbar       |
2023-07-03T10:42:10.2349774Z +------------+--------------------------------+---------------+-----------------------------------------------------+----------------+---------------+".
2023-07-03T10:42:10.2350113Z 
2023-07-03T10:42:10.2350339Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Commands\RoutesTest.php:136
2023-07-03T10:42:10.2350597Z 
2023-07-03T10:42:10.2350813Z 24) CodeIgniter\Commands\RoutesTest::testRoutesCommandRouteLegacy
2023-07-03T10:42:10.2351672Z Failed asserting that '+---------+-------------------------------+---------------+-----------------------------------------------------+----------------+---------------+\r\n
2023-07-03T10:42:10.2352639Z | Method  | Route                         | Name          | Handler                                             | Before Filters | After Filters |\r\n
2023-07-03T10:42:10.2353286Z +---------+-------------------------------+---------------+-----------------------------------------------------+----------------+---------------+\r\n
2023-07-03T10:42:10.2354006Z | GET     | /                             | »             | \App\Controllers\Home::index                        |                | toolbar       |\r\n
2023-07-03T10:42:10.2354555Z | GET     | closure                       | »             | (Closure)                                           |                | toolbar       |\r\n
2023-07-03T10:42:10.2355188Z | GET     | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2355859Z | HEAD    | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2356568Z | POST    | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2357267Z | PUT     | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2358073Z | DELETE  | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2358743Z | OPTIONS | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2359433Z | TRACE   | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2360129Z | CONNECT | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |\r\n
2023-07-03T10:42:10.2360803Z | CLI     | testing                       | testing-index | \App\Controllers\TestController::index              |                |               |\r\n
2023-07-03T10:42:10.2361299Z | auto    | hello                         |               | \Tests\Support\Controllers\Hello::index             |                | toolbar       |\r\n
2023-07-03T10:42:10.2361763Z | auto    | hello/index[/...]             |               | \Tests\Support\Controllers\Hello::index             |                | toolbar       |\r\n
2023-07-03T10:42:10.2362295Z | auto    | newautorouting/getIndex[/...] |               | \Tests\Support\Controllers\Newautorouting::getIndex |                | toolbar       |\r\n
2023-07-03T10:42:10.2362865Z | auto    | newautorouting/postSave[/...] |               | \Tests\Support\Controllers\Newautorouting::postSave |                | toolbar       |\r\n
2023-07-03T10:42:10.2363404Z | auto    | popcorn                       |               | \Tests\Support\Controllers\Popcorn::index           |                | toolbar       |\r\n
2023-07-03T10:42:10.2363878Z | auto    | popcorn/index[/...]           |               | \Tests\Support\Controllers\Popcorn::index           |                | toolbar       |\r\n
2023-07-03T10:42:10.2364384Z | auto    | popcorn/pop[/...]             |               | \Tests\Support\Controllers\Popcorn::pop             |                | toolbar       |\r\n
2023-07-03T10:42:10.2364907Z | auto    | popcorn/popper[/...]          |               | \Tests\Support\Controllers\Popcorn::popper          |                | toolbar       |\r\n
2023-07-03T10:42:10.2365426Z | auto    | popcorn/weasel[/...]          |               | \Tests\Support\Controllers\Popcorn::weasel          |                | toolbar       |\r\n
2023-07-03T10:42:10.2365903Z | auto    | popcorn/oops[/...]            |               | \Tests\Support\Controllers\Popcorn::oops            |                | toolbar       |\r\n
2023-07-03T10:42:10.2366503Z | auto    | popcorn/goaway[/...]          |               | \Tests\Support\Controllers\Popcorn::goaway          |                | toolbar       |\r\n
2023-07-03T10:42:10.2367005Z | auto    | popcorn/index3[/...]          |               | \Tests\Support\Controllers\Popcorn::index3          |                | toolbar       |\r\n
2023-07-03T10:42:10.2367518Z | auto    | popcorn/canyon[/...]          |               | \Tests\Support\Controllers\Popcorn::canyon          |                | toolbar       |\r\n
2023-07-03T10:42:10.2368025Z | auto    | popcorn/cat[/...]             |               | \Tests\Support\Controllers\Popcorn::cat             |                | toolbar       |\r\n
2023-07-03T10:42:10.2368486Z | auto    | popcorn/json[/...]            |               | \Tests\Support\Controllers\Popcorn::json            |                | toolbar       |\r\n
2023-07-03T10:42:10.2368988Z | auto    | popcorn/xml[/...]             |               | \Tests\Support\Controllers\Popcorn::xml             |                | toolbar       |\r\n
2023-07-03T10:42:10.2369490Z | auto    | popcorn/toindex[/...]         |               | \Tests\Support\Controllers\Popcorn::toindex         |                | toolbar       |\r\n
2023-07-03T10:42:10.2370004Z | auto    | popcorn/echoJson[/...]        |               | \Tests\Support\Controllers\Popcorn::echoJson        |                | toolbar       |\r\n
2023-07-03T10:42:10.2370551Z | auto    | remap[/...]                   |               | \Tests\Support\Controllers\Remap::_remap            |                | toolbar       |\r\n
2023-07-03T10:42:10.2371258Z +---------+-------------------------------+---------------+-----------------------------------------------------+----------------+---------------+\r\n
2023-07-03T10:42:10.2371670Z \r\n
2023-07-03T10:42:10.2372239Z ' contains "+---------+-------------------------------+---------------+-----------------------------------------------------+----------------+---------------+
2023-07-03T10:42:10.2372773Z | Method  | Route                         | Name          | Handler                                             | Before Filters | After Filters |
2023-07-03T10:42:10.2373419Z +---------+-------------------------------+---------------+-----------------------------------------------------+----------------+---------------+
2023-07-03T10:42:10.2374121Z | GET     | /                             | »             | \App\Controllers\Home::index                        |                | toolbar       |
2023-07-03T10:42:10.2374661Z | GET     | closure                       | »             | (Closure)                                           |                | toolbar       |
2023-07-03T10:42:10.2375250Z | GET     | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2375945Z | HEAD    | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2376640Z | POST    | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2377324Z | PUT     | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2377999Z | DELETE  | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2378703Z | OPTIONS | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2379407Z | TRACE   | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2380246Z | CONNECT | testing                       | testing-index | \App\Controllers\TestController::index              |                | toolbar       |
2023-07-03T10:42:10.2380903Z | CLI     | testing                       | testing-index | \App\Controllers\TestController::index              |                |               |
2023-07-03T10:42:10.2381408Z | auto    | hello                         |               | \Tests\Support\Controllers\Hello::index             |                | toolbar       |
2023-07-03T10:42:10.2381920Z | auto    | hello/index[/...]             |               | \Tests\Support\Controllers\Hello::index             |                | toolbar       |
2023-07-03T10:42:10.2382450Z | auto    | newautorouting/getIndex[/...] |               | \Tests\Support\Controllers\Newautorouting::getIndex |                | toolbar       |
2023-07-03T10:42:10.2383014Z | auto    | newautorouting/postSave[/...] |               | \Tests\Support\Controllers\Newautorouting::postSave |                | toolbar       |
2023-07-03T10:42:10.2383512Z | auto    | popcorn                       |               | \Tests\Support\Controllers\Popcorn::index           |                | toolbar       |
2023-07-03T10:42:10.2384021Z | auto    | popcorn/index[/...]           |               | \Tests\Support\Controllers\Popcorn::index           |                | toolbar       |
2023-07-03T10:42:10.2384528Z | auto    | popcorn/pop[/...]             |               | \Tests\Support\Controllers\Popcorn::pop             |                | toolbar       |
2023-07-03T10:42:10.2385138Z | auto    | popcorn/popper[/...]          |               | \Tests\Support\Controllers\Popcorn::popper          |                | toolbar       |
2023-07-03T10:42:10.2385620Z | auto    | popcorn/weasel[/...]          |               | \Tests\Support\Controllers\Popcorn::weasel          |                | toolbar       |
2023-07-03T10:42:10.2386132Z | auto    | popcorn/oops[/...]            |               | \Tests\Support\Controllers\Popcorn::oops            |                | toolbar       |
2023-07-03T10:42:10.2386627Z | auto    | popcorn/goaway[/...]          |               | \Tests\Support\Controllers\Popcorn::goaway          |                | toolbar       |
2023-07-03T10:42:10.2387130Z | auto    | popcorn/index3[/...]          |               | \Tests\Support\Controllers\Popcorn::index3          |                | toolbar       |
2023-07-03T10:42:10.2387602Z | auto    | popcorn/canyon[/...]          |               | \Tests\Support\Controllers\Popcorn::canyon          |                | toolbar       |
2023-07-03T10:42:10.2388107Z | auto    | popcorn/cat[/...]             |               | \Tests\Support\Controllers\Popcorn::cat             |                | toolbar       |
2023-07-03T10:42:10.2388613Z | auto    | popcorn/json[/...]            |               | \Tests\Support\Controllers\Popcorn::json            |                | toolbar       |
2023-07-03T10:42:10.2389094Z | auto    | popcorn/xml[/...]             |               | \Tests\Support\Controllers\Popcorn::xml             |                | toolbar       |
2023-07-03T10:42:10.2389544Z | auto    | popcorn/toindex[/...]         |               | \Tests\Support\Controllers\Popcorn::toindex         |                | toolbar       |
2023-07-03T10:42:10.2390045Z | auto    | popcorn/echoJson[/...]        |               | \Tests\Support\Controllers\Popcorn::echoJson        |                | toolbar       |
2023-07-03T10:42:10.2390525Z | auto    | remap[/...]                   |               | \Tests\Support\Controllers\Remap::_remap            |                | toolbar       |
2023-07-03T10:42:10.2391217Z +---------+-------------------------------+---------------+-----------------------------------------------------+----------------+---------------+".
2023-07-03T10:42:10.2391554Z 
2023-07-03T10:42:10.2391762Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Commands\RoutesTest.php:185
2023-07-03T10:42:10.2391992Z 
2023-07-03T10:42:10.2392357Z 25) CodeIgniter\Commands\Utilities\NamespacesTest::testNamespacesCommandCodeIgniterOnly
2023-07-03T10:42:10.2392946Z Failed asserting that '+---------------+-------------------------+--------+\r\n
2023-07-03T10:42:10.2393303Z | Namespace     | Path                    | Found? |\r\n
2023-07-03T10:42:10.2393685Z +---------------+-------------------------+--------+\r\n
2023-07-03T10:42:10.2394030Z | CodeIgniter   | ROOTPATH\system         | Yes    |\r\n
2023-07-03T10:42:10.2394375Z | App           | ROOTPATH\app            | Yes    |\r\n
2023-07-03T10:42:10.2394661Z | Config        | APPPATH\Config          | Yes    |\r\n
2023-07-03T10:42:10.2395017Z | Tests\Support | ROOTPATH\tests\_support | Yes    |\r\n
2023-07-03T10:42:10.2395436Z +---------------+-------------------------+--------+\r\n
2023-07-03T10:42:10.2395711Z \r\n
2023-07-03T10:42:10.2396057Z ' contains "+---------------+-------------------------+--------+
2023-07-03T10:42:10.2396393Z | Namespace     | Path                    | Found? |
2023-07-03T10:42:10.2396789Z +---------------+-------------------------+--------+
2023-07-03T10:42:10.2397096Z | CodeIgniter   | ROOTPATH/system         | Yes    |
2023-07-03T10:42:10.2397385Z | App           | ROOTPATH/app            | Yes    |
2023-07-03T10:42:10.2397657Z | Config        | APPPATH/Config          | Yes    |
2023-07-03T10:42:10.2397950Z | Tests\Support | ROOTPATH/tests/_support | Yes    |
2023-07-03T10:42:10.2398360Z +---------------+-------------------------+--------+".
2023-07-03T10:42:10.2398556Z 
2023-07-03T10:42:10.2398810Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Commands\Utilities\NamespacesTest.php:58
2023-07-03T10:42:10.2399181Z 
2023-07-03T10:42:10.2399451Z 26) CodeIgniter\Commands\Utilities\NamespacesTest::testNamespacesCommandAllNamespaces
2023-07-03T10:42:10.2400129Z Failed asserting that '+-----------------------------------+--------------------------------------------------------------+--------+\r\n
2023-07-03T10:42:10.2400565Z |Namespace|Path|Found?|\r\n
2023-07-03T10:42:10.2401089Z +-----------------------------------+--------------------------------------------------------------+--------+\r\n
2023-07-03T10:42:10.2401475Z |CodeIgniter|ROOTPATH\system|Yes|\r\n
2023-07-03T10:42:10.2401764Z |App|ROOTPATH\app|Yes|\r\n
2023-07-03T10:42:10.2402070Z |Config|APPPATH\Config|Yes|\r\n
2023-07-03T10:42:10.2402361Z |Tests\Support|ROOTPATH\tests\_support|Yes|\r\n
2023-07-03T10:42:10.2402872Z |phpDocumentor\Reflection|VENDORPATH\phpdocumentor\reflection-common\src|Yes|\r\n
2023-07-03T10:42:10.2403446Z |phpDocumentor\Reflection|VENDORPATH\phpdocumentor\type-resolver\src|Yes|\r\n
2023-07-03T10:42:10.2404024Z |phpDocumentor\Reflection|VENDORPATH\phpdocumentor\reflection-docblock\src|Yes|\r\n
2023-07-03T10:42:10.2404516Z |XdgBaseDir|VENDORPATH\dnoegel\php-xdg-base-dir\src|Yes|\r\n
2023-07-03T10:42:10.2404915Z |Webmozart\Assert|VENDORPATH\webmozart\assert\src|Yes|\r\n
2023-07-03T10:42:10.2405245Z |Utils|ROOTPATH\utils|Yes|\r\n
2023-07-03T10:42:10.2405668Z |Symfony\Polyfill\Php81|VENDORPATH\symfony\polyfill-php81|Yes|\r\n
2023-07-03T10:42:10.2406185Z |Symfony\Polyfill\Php80|VENDORPATH\symfony\polyfill-php80|Yes|\r\n
2023-07-03T10:42:10.2406710Z |Symfony\Polyfill\Mbstring|VENDORPATH\symfony\polyfill-mbstring|Yes|\r\n
2023-07-03T10:42:10.2407290Z |Symfony\Polyfill\Intl\Normalizer|VENDORPATH\symfony\polyfill-intl-normalizer|Yes|\r\n
2023-07-03T10:42:10.2407860Z |Symfony\Polyfill\Intl\Grapheme|VENDORPATH\symfony\polyfill-intl-grapheme|Yes|\r\n
2023-07-03T10:42:10.2408407Z |Symfony\Polyfill\Ctype|VENDORPATH\symfony\polyfill-ctype|Yes|\r\n
2023-07-03T10:42:10.2408937Z |Symfony\Contracts\Service|VENDORPATH\symfony\service-contracts|Yes|\r\n
2023-07-03T10:42:10.2409499Z |Symfony\Contracts\EventDispatcher|VENDORPATH\symfony\event-dispatcher-contracts|Yes|\r\n
2023-07-03T10:42:10.2409957Z |Symfony\Component\Yaml|VENDORPATH\symfony\yaml|Yes|\r\n
2023-07-03T10:42:10.2410353Z |Symfony\Component\String|VENDORPATH\symfony\string|Yes|\r\n
2023-07-03T10:42:10.2410731Z |Symfony\Component\Stopwatch|VENDORPATH\symfony\stopwatch|Yes|\r\n
2023-07-03T10:42:10.2411264Z |Symfony\Component\Process|VENDORPATH\symfony\process|Yes|\r\n
2023-07-03T10:42:10.2411797Z |Symfony\Component\OptionsResolver|VENDORPATH\symfony\options-resolver|Yes|\r\n
2023-07-03T10:42:10.2412244Z |Symfony\Component\Finder|VENDORPATH\symfony\finder|Yes|\r\n
2023-07-03T10:42:10.2412629Z |Symfony\Component\Filesystem|VENDORPATH\symfony\filesystem|Yes|\r\n
2023-07-03T10:42:10.2413185Z |Symfony\Component\EventDispatcher|VENDORPATH\symfony\event-dispatcher|Yes|\r\n
2023-07-03T10:42:10.2413641Z |Symfony\Component\Console|VENDORPATH\symfony\console|Yes|\r\n
2023-07-03T10:42:10.2414014Z |Symfony\Component\Config|VENDORPATH\symfony\config|Yes|\r\n
2023-07-03T10:42:10.2414503Z |Spatie\ArrayToXml|VENDORPATH\spatie\array-to-xml\src|Yes|\r\n
2023-07-03T10:42:10.2414891Z |Psr\Log|VENDORPATH\psr\log\Psr\Log|Yes|\r\n
2023-07-03T10:42:10.2415302Z |Psr\Http\Message|VENDORPATH\psr\http-message\src|Yes|\r\n
2023-07-03T10:42:10.2415789Z |Psr\Http\Message|VENDORPATH\psr\http-factory\src|Yes|\r\n
2023-07-03T10:42:10.2416262Z |Psr\Http\Client|VENDORPATH\psr\http-client\src|Yes|\r\n
2023-07-03T10:42:10.2416729Z |Psr\EventDispatcher|VENDORPATH\psr\event-dispatcher\src|Yes|\r\n
2023-07-03T10:42:10.2417099Z |Psr\Container|VENDORPATH\psr\container\src|Yes|\r\n
2023-07-03T10:42:10.2417450Z |Psr\Cache|VENDORPATH\psr\cache\src|Yes|\r\n
2023-07-03T10:42:10.2417791Z |Psalm|VENDORPATH\vimeo\psalm\src\Psalm|Yes|\r\n
2023-07-03T10:42:10.2418100Z |Predis|VENDORPATH\predis\predis\src|Yes|\r\n
2023-07-03T10:42:10.2418541Z |PhpParser|VENDORPATH\nikic\php-parser\lib\PhpParser|Yes|\r\n
2023-07-03T10:42:10.2419134Z |PhpCsFixer|VENDORPATH\friendsofphp\php-cs-fixer\src|Yes|\r\n
2023-07-03T10:42:10.2419602Z |PhpCoveralls|VENDORPATH\php-coveralls\php-coveralls\src|Yes|\r\n
2023-07-03T10:42:10.2420177Z |PHPStan\PhpDocParser|VENDORPATH\phpstan\phpdoc-parser\src|Yes|\r\n
2023-07-03T10:42:10.2420630Z |Nexus\PHPUnit\Extension|VENDORPATH\nexusphp\tachycardia\src|Yes|\r\n
2023-07-03T10:42:10.2421123Z |Nexus\CsConfig|VENDORPATH\nexusphp\cs-config\src|Yes|\r\n
2023-07-03T10:42:10.2421651Z |LanguageServerProtocol|VENDORPATH\felixfbecker\language-server-protocol\src|Yes|\r\n
2023-07-03T10:42:10.2422210Z |Laminas\Escaper|VENDORPATH\laminas\laminas-escaper\src|Yes|\r\n
2023-07-03T10:42:10.2422660Z |Kint|VENDORPATH\kint-php\kint\src|Yes|\r\n
2023-07-03T10:42:10.2422995Z |GuzzleHttp\Psr7|VENDORPATH\guzzlehttp\psr7\src|Yes|\r\n
2023-07-03T10:42:10.2423394Z |GuzzleHttp\Promise|VENDORPATH\guzzlehttp\promises\src|Yes|\r\n
2023-07-03T10:42:10.2423782Z |GuzzleHttp|VENDORPATH\guzzlehttp\guzzle\src|Yes|\r\n
2023-07-03T10:42:10.2424242Z |Fidry\CpuCoreCounter|VENDORPATH\fidry\cpu-core-counter\src|Yes|\r\n
2023-07-03T10:42:10.2424633Z |Faker|VENDORPATH\fakerphp\faker\src\Faker|Yes|\r\n
2023-07-03T10:42:10.2425080Z |Doctrine\Instantiator|VENDORPATH\doctrine\instantiator\src\Doctrine\Instantiator|Yes|\r\n
2023-07-03T10:42:10.2425601Z |Doctrine\Deprecations|VENDORPATH\doctrine\deprecations\lib\Doctrine\Deprecations|Yes|\r\n
2023-07-03T10:42:10.2426027Z |Doctrine\Common\Lexer|VENDORPATH\doctrine\lexer\src|Yes|\r\n
2023-07-03T10:42:10.2426474Z |Doctrine\Common\Annotations|VENDORPATH\doctrine\annotations\lib\Doctrine\Common\Annot...|Yes|\r\n
2023-07-03T10:42:10.2426982Z |DeepCopy|VENDORPATH\myclabs\deep-copy\src\DeepCopy|Yes|\r\n
2023-07-03T10:42:10.2427488Z |CodeIgniter\CodingStandard|VENDORPATH\codeigniter\coding-standard\src|Yes|\r\n
2023-07-03T10:42:10.2427996Z |Amp\ByteStream|VENDORPATH\amphp\byte-stream\lib|Yes|\r\n
2023-07-03T10:42:10.2428348Z |Amp|VENDORPATH\amphp\amp\lib|Yes|\r\n
2023-07-03T10:42:10.2428830Z |AdvancedJsonRpc|VENDORPATH\felixfbecker\advanced-json-rpc\lib|Yes|\r\n
2023-07-03T10:42:10.2429412Z +-----------------------------------+--------------------------------------------------------------+--------+\r\n
2023-07-03T10:42:10.2429879Z \r\n
2023-07-03T10:42:10.2430240Z ' contains "|CodeIgniter|ROOTPATH/system|Yes|".
2023-07-03T10:42:10.2430428Z 
2023-07-03T10:42:10.2430770Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Commands\Utilities\NamespacesTest.php:67
2023-07-03T10:42:10.2431048Z 
2023-07-03T10:42:10.2431271Z 27) CodeIgniter\Debug\TimerTest::testCommonCallableExpectNoReturn
2023-07-03T10:42:10.2431700Z Failed asserting that 0.0964 is equal to 0.1 or is greater than 0.1.
2023-07-03T10:42:10.2431917Z 
2023-07-03T10:42:10.2432127Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Debug\TimerTest.php:213
2023-07-03T10:42:10.2432341Z 
2023-07-03T10:42:10.2432571Z 28) CodeIgniter\Files\FileCollectionTest::testResolveDirectoryDirectory
2023-07-03T10:42:10.2432984Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2433333Z --- Expected
2023-07-03T10:42:10.2433532Z +++ Actual
2023-07-03T10:42:10.2433727Z @@ @@
2023-07-03T10:42:10.2434096Z -'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/'
2023-07-03T10:42:10.2434576Z +'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\'
2023-07-03T10:42:10.2434806Z 
2023-07-03T10:42:10.2435045Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:50
2023-07-03T10:42:10.2435313Z 
2023-07-03T10:42:10.2435539Z 29) CodeIgniter\Files\FileCollectionTest::testResolveDirectorySymlink
2023-07-03T10:42:10.2435930Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2436227Z --- Expected
2023-07-03T10:42:10.2436451Z +++ Actual
2023-07-03T10:42:10.2436662Z @@ @@
2023-07-03T10:42:10.2437008Z -'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/'
2023-07-03T10:42:10.2437480Z +'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\'
2023-07-03T10:42:10.2437696Z 
2023-07-03T10:42:10.2438041Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:71
2023-07-03T10:42:10.2438316Z 
2023-07-03T10:42:10.2438486Z 30) CodeIgniter\Files\FileCollectionTest::testResolveFileFile
2023-07-03T10:42:10.2438860Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2439194Z --- Expected
2023-07-03T10:42:10.2439386Z +++ Actual
2023-07-03T10:42:10.2439596Z @@ @@
2023-07-03T10:42:10.2440024Z -'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2440563Z +'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2440779Z 
2023-07-03T10:42:10.2441001Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:80
2023-07-03T10:42:10.2441264Z 
2023-07-03T10:42:10.2441478Z 31) CodeIgniter\Files\FileCollectionTest::testResolveFileSymlink
2023-07-03T10:42:10.2441839Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2442127Z --- Expected
2023-07-03T10:42:10.2442336Z +++ Actual
2023-07-03T10:42:10.2442519Z @@ @@
2023-07-03T10:42:10.2442874Z -'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2443380Z +'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2443618Z 
2023-07-03T10:42:10.2443845Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:91
2023-07-03T10:42:10.2444110Z 
2023-07-03T10:42:10.2444325Z 32) CodeIgniter\Files\FileCollectionTest::testConstructorAddsFiles
2023-07-03T10:42:10.2444684Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2444994Z --- Expected
2023-07-03T10:42:10.2445210Z +++ Actual
2023-07-03T10:42:10.2445382Z @@ @@
2023-07-03T10:42:10.2445587Z  Array &0 (
2023-07-03T10:42:10.2446020Z      0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2446529Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2447065Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2447392Z  )
2023-07-03T10:42:10.2447519Z 
2023-07-03T10:42:10.2447755Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:119
2023-07-03T10:42:10.2447996Z 
2023-07-03T10:42:10.2448215Z 33) CodeIgniter\Files\FileCollectionTest::testConstructorCallsDefine
2023-07-03T10:42:10.2448702Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2448989Z --- Expected
2023-07-03T10:42:10.2449163Z +++ Actual
2023-07-03T10:42:10.2449374Z @@ @@
2023-07-03T10:42:10.2449586Z  Array &0 (
2023-07-03T10:42:10.2449986Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2450530Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2450858Z  )
2023-07-03T10:42:10.2450979Z 
2023-07-03T10:42:10.2451183Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:131
2023-07-03T10:42:10.2451454Z 
2023-07-03T10:42:10.2451652Z 34) CodeIgniter\Files\FileCollectionTest::testAddStringFile
2023-07-03T10:42:10.2452106Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2452434Z --- Expected
2023-07-03T10:42:10.2452662Z +++ Actual
2023-07-03T10:42:10.2452829Z @@ @@
2023-07-03T10:42:10.2453049Z  Array &0 (
2023-07-03T10:42:10.2453472Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2453970Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2454286Z  )
2023-07-03T10:42:10.2454412Z 
2023-07-03T10:42:10.2454637Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:140
2023-07-03T10:42:10.2454902Z 
2023-07-03T10:42:10.2455130Z 35) CodeIgniter\Files\FileCollectionTest::testAddStringFileRecursiveDoesNothing
2023-07-03T10:42:10.2455568Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2455889Z --- Expected
2023-07-03T10:42:10.2456187Z +++ Actual
2023-07-03T10:42:10.2456403Z @@ @@
2023-07-03T10:42:10.2456616Z  Array &0 (
2023-07-03T10:42:10.2457011Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2457560Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2457881Z  )
2023-07-03T10:42:10.2457982Z 
2023-07-03T10:42:10.2458215Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:149
2023-07-03T10:42:10.2458480Z 
2023-07-03T10:42:10.2458690Z 36) CodeIgniter\Files\FileCollectionTest::testAddStringDirectory
2023-07-03T10:42:10.2459076Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2459358Z --- Expected
2023-07-03T10:42:10.2459578Z +++ Actual
2023-07-03T10:42:10.2459800Z @@ @@
2023-07-03T10:42:10.2459984Z  Array &0 (
2023-07-03T10:42:10.2460421Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2461055Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2461613Z -    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/prune_ripe.php'
2023-07-03T10:42:10.2462128Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2462650Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2463168Z +    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\prune_ripe.php'
2023-07-03T10:42:10.2463456Z  )
2023-07-03T10:42:10.2463580Z 
2023-07-03T10:42:10.2463814Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:164
2023-07-03T10:42:10.2464081Z 
2023-07-03T10:42:10.2464310Z 37) CodeIgniter\Files\FileCollectionTest::testAddStringDirectoryRecursive
2023-07-03T10:42:10.2464704Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2464987Z --- Expected
2023-07-03T10:42:10.2465194Z +++ Actual
2023-07-03T10:42:10.2465386Z @@ @@
2023-07-03T10:42:10.2465568Z  Array &0 (
2023-07-03T10:42:10.2465991Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2466509Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2467009Z -    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/prune_ripe.php'
2023-07-03T10:42:10.2467642Z -    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2468166Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2468649Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2469176Z +    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\prune_ripe.php'
2023-07-03T10:42:10.2469697Z +    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2470019Z  )
2023-07-03T10:42:10.2470113Z 
2023-07-03T10:42:10.2470353Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:180
2023-07-03T10:42:10.2470622Z 
2023-07-03T10:42:10.2470824Z 38) CodeIgniter\Files\FileCollectionTest::testAddArrayFiles
2023-07-03T10:42:10.2471182Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2471456Z --- Expected
2023-07-03T10:42:10.2471642Z +++ Actual
2023-07-03T10:42:10.2471823Z @@ @@
2023-07-03T10:42:10.2472011Z  Array &0 (
2023-07-03T10:42:10.2472433Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2472960Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2473479Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2473963Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2474276Z  )
2023-07-03T10:42:10.2474400Z 
2023-07-03T10:42:10.2474632Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:197
2023-07-03T10:42:10.2475001Z 
2023-07-03T10:42:10.2475209Z 39) CodeIgniter\Files\FileCollectionTest::testAddArrayDirectoryAndFile
2023-07-03T10:42:10.2475604Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2475897Z --- Expected
2023-07-03T10:42:10.2476086Z +++ Actual
2023-07-03T10:42:10.2476295Z @@ @@
2023-07-03T10:42:10.2476505Z  Array &0 (
2023-07-03T10:42:10.2476904Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2477413Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2477941Z -    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/prune_ripe.php'
2023-07-03T10:42:10.2478477Z -    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2478971Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2479478Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2479968Z +    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\prune_ripe.php'
2023-07-03T10:42:10.2480448Z +    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2480730Z  )
2023-07-03T10:42:10.2480848Z 
2023-07-03T10:42:10.2481064Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:216
2023-07-03T10:42:10.2481338Z 
2023-07-03T10:42:10.2481544Z 40) CodeIgniter\Files\FileCollectionTest::testAddArrayRecursive
2023-07-03T10:42:10.2481887Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2482201Z --- Expected
2023-07-03T10:42:10.2482404Z +++ Actual
2023-07-03T10:42:10.2482562Z @@ @@
2023-07-03T10:42:10.2482765Z  Array &0 (
2023-07-03T10:42:10.2483185Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2483672Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2484198Z -    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/prune_ripe.php'
2023-07-03T10:42:10.2484738Z -    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2485256Z -    4 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Log/Handlers/TestHandler.php'
2023-07-03T10:42:10.2485829Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2486391Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2486901Z +    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\prune_ripe.php'
2023-07-03T10:42:10.2487445Z +    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2487971Z +    4 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Log\Handlers\TestHandler.php'
2023-07-03T10:42:10.2488276Z  )
2023-07-03T10:42:10.2488380Z 
2023-07-03T10:42:10.2488603Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:236
2023-07-03T10:42:10.2488864Z 
2023-07-03T10:42:10.2489044Z 41) CodeIgniter\Files\FileCollectionTest::testAddFile
2023-07-03T10:42:10.2489375Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2489695Z --- Expected
2023-07-03T10:42:10.2489910Z +++ Actual
2023-07-03T10:42:10.2490077Z @@ @@
2023-07-03T10:42:10.2490289Z  Array &0 (
2023-07-03T10:42:10.2490722Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2491224Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2491545Z  )
2023-07-03T10:42:10.2491667Z 
2023-07-03T10:42:10.2491898Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:245
2023-07-03T10:42:10.2492161Z 
2023-07-03T10:42:10.2492340Z 42) CodeIgniter\Files\FileCollectionTest::testAddFiles
2023-07-03T10:42:10.2492669Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2492984Z --- Expected
2023-07-03T10:42:10.2493272Z +++ Actual
2023-07-03T10:42:10.2493431Z @@ @@
2023-07-03T10:42:10.2493603Z  Array &0 (
2023-07-03T10:42:10.2494033Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2494532Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2495048Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2495570Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2495858Z  )
2023-07-03T10:42:10.2495974Z 
2023-07-03T10:42:10.2496208Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:277
2023-07-03T10:42:10.2496473Z 
2023-07-03T10:42:10.2496648Z 43) CodeIgniter\Files\FileCollectionTest::testGet
2023-07-03T10:42:10.2496990Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2497269Z --- Expected
2023-07-03T10:42:10.2497489Z +++ Actual
2023-07-03T10:42:10.2497696Z @@ @@
2023-07-03T10:42:10.2497896Z  Array &0 (
2023-07-03T10:42:10.2498296Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2498788Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2499055Z  )
2023-07-03T10:42:10.2499181Z 
2023-07-03T10:42:10.2499412Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:285
2023-07-03T10:42:10.2499686Z 
2023-07-03T10:42:10.2499865Z 44) CodeIgniter\Files\FileCollectionTest::testGetSorts
2023-07-03T10:42:10.2500223Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2500505Z --- Expected
2023-07-03T10:42:10.2500735Z +++ Actual
2023-07-03T10:42:10.2500944Z @@ @@
2023-07-03T10:42:10.2501122Z  Array &0 (
2023-07-03T10:42:10.2501547Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2502067Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2502557Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2503082Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2503394Z  )
2023-07-03T10:42:10.2503521Z 
2023-07-03T10:42:10.2503723Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:298
2023-07-03T10:42:10.2504097Z 
2023-07-03T10:42:10.2504286Z 45) CodeIgniter\Files\FileCollectionTest::testGetUniques
2023-07-03T10:42:10.2504648Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2504977Z --- Expected
2023-07-03T10:42:10.2505149Z +++ Actual
2023-07-03T10:42:10.2505363Z @@ @@
2023-07-03T10:42:10.2505573Z  Array &0 (
2023-07-03T10:42:10.2505968Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2506496Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2506813Z  )
2023-07-03T10:42:10.2506934Z 
2023-07-03T10:42:10.2507140Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:310
2023-07-03T10:42:10.2507402Z 
2023-07-03T10:42:10.2507570Z 46) CodeIgniter\Files\FileCollectionTest::testSet
2023-07-03T10:42:10.2507924Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2508749Z --- Expected
2023-07-03T10:42:10.2509014Z +++ Actual
2023-07-03T10:42:10.2509229Z @@ @@
2023-07-03T10:42:10.2509411Z  Array &0 (
2023-07-03T10:42:10.2509847Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2510339Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2510661Z  )
2023-07-03T10:42:10.2510754Z 
2023-07-03T10:42:10.2510986Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:318
2023-07-03T10:42:10.2511254Z 
2023-07-03T10:42:10.2511449Z 47) CodeIgniter\Files\FileCollectionTest::testRemoveFile
2023-07-03T10:42:10.2511977Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2512271Z --- Expected
2023-07-03T10:42:10.2512495Z +++ Actual
2023-07-03T10:42:10.2512708Z @@ @@
2023-07-03T10:42:10.2512888Z  Array &0 (
2023-07-03T10:42:10.2513315Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2513841Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2514337Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2514652Z  )
2023-07-03T10:42:10.2514768Z 
2023-07-03T10:42:10.2515000Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:343
2023-07-03T10:42:10.2515267Z 
2023-07-03T10:42:10.2515455Z 48) CodeIgniter\Files\FileCollectionTest::testRemoveFiles
2023-07-03T10:42:10.2515781Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2516101Z --- Expected
2023-07-03T10:42:10.2516312Z +++ Actual
2023-07-03T10:42:10.2516490Z @@ @@
2023-07-03T10:42:10.2516742Z -Array &0 ()
2023-07-03T10:42:10.2516958Z +Array &0 (
2023-07-03T10:42:10.2517321Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2517842Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2518152Z +)
2023-07-03T10:42:10.2518265Z 
2023-07-03T10:42:10.2518463Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:358
2023-07-03T10:42:10.2518725Z 
2023-07-03T10:42:10.2518913Z 49) CodeIgniter\Files\FileCollectionTest::testAddDirectory
2023-07-03T10:42:10.2519272Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2519578Z --- Expected
2023-07-03T10:42:10.2519758Z +++ Actual
2023-07-03T10:42:10.2519938Z @@ @@
2023-07-03T10:42:10.2520126Z  Array &0 (
2023-07-03T10:42:10.2520568Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2521035Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2521528Z -    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/prune_ripe.php'
2023-07-03T10:42:10.2522023Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2522485Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2522970Z +    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\prune_ripe.php'
2023-07-03T10:42:10.2523376Z  )
2023-07-03T10:42:10.2523506Z 
2023-07-03T10:42:10.2523726Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:382
2023-07-03T10:42:10.2523962Z 
2023-07-03T10:42:10.2524161Z 50) CodeIgniter\Files\FileCollectionTest::testAddDirectoryRecursive
2023-07-03T10:42:10.2524552Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2524861Z --- Expected
2023-07-03T10:42:10.2525035Z +++ Actual
2023-07-03T10:42:10.2525248Z @@ @@
2023-07-03T10:42:10.2525454Z  Array &0 (
2023-07-03T10:42:10.2525849Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2526364Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2526883Z -    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/prune_ripe.php'
2023-07-03T10:42:10.2527379Z -    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2527868Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2528378Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2528908Z +    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\prune_ripe.php'
2023-07-03T10:42:10.2529406Z +    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2529729Z  )
2023-07-03T10:42:10.2529844Z 
2023-07-03T10:42:10.2530076Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:397
2023-07-03T10:42:10.2530421Z 
2023-07-03T10:42:10.2530588Z 51) CodeIgniter\Files\FileCollectionTest::testAddDirectories
2023-07-03T10:42:10.2530936Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2531227Z --- Expected
2023-07-03T10:42:10.2531443Z +++ Actual
2023-07-03T10:42:10.2531599Z @@ @@
2023-07-03T10:42:10.2531785Z  Array &0 (
2023-07-03T10:42:10.2532185Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2532663Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2533191Z -    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/prune_ripe.php'
2023-07-03T10:42:10.2533707Z -    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2534183Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2534696Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2535187Z +    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\prune_ripe.php'
2023-07-03T10:42:10.2535679Z +    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2535945Z  )
2023-07-03T10:42:10.2536053Z 
2023-07-03T10:42:10.2536266Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:415
2023-07-03T10:42:10.2536520Z 
2023-07-03T10:42:10.2536732Z 52) CodeIgniter\Files\FileCollectionTest::testAddDirectoriesRecursive
2023-07-03T10:42:10.2537086Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2537364Z --- Expected
2023-07-03T10:42:10.2537549Z +++ Actual
2023-07-03T10:42:10.2537703Z @@ @@
2023-07-03T10:42:10.2537875Z  Array &0 (
2023-07-03T10:42:10.2538259Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2538731Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2539227Z -    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/prune_ripe.php'
2023-07-03T10:42:10.2539732Z -    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2540243Z -    4 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Log/Handlers/TestHandler.php'
2023-07-03T10:42:10.2540733Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2542472Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2542964Z +    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\prune_ripe.php'
2023-07-03T10:42:10.2543454Z +    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2543973Z +    4 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Log\Handlers\TestHandler.php'
2023-07-03T10:42:10.2544275Z  )
2023-07-03T10:42:10.2544388Z 
2023-07-03T10:42:10.2544603Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:434
2023-07-03T10:42:10.2544845Z 
2023-07-03T10:42:10.2545037Z 53) CodeIgniter\Files\FileCollectionTest::testRemovePatternRegex
2023-07-03T10:42:10.2545389Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2545666Z --- Expected
2023-07-03T10:42:10.2545840Z +++ Actual
2023-07-03T10:42:10.2546012Z @@ @@
2023-07-03T10:42:10.2546183Z  Array &0 (
2023-07-03T10:42:10.2546555Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2547047Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2547530Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2548013Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2548284Z  )
2023-07-03T10:42:10.2548393Z 
2023-07-03T10:42:10.2548604Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:461
2023-07-03T10:42:10.2548853Z 
2023-07-03T10:42:10.2549164Z 54) CodeIgniter\Files\FileCollectionTest::testRemovePatternPseudo
2023-07-03T10:42:10.2549513Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2549795Z --- Expected
2023-07-03T10:42:10.2549981Z +++ Actual
2023-07-03T10:42:10.2550138Z @@ @@
2023-07-03T10:42:10.2550375Z  Array &0 (
2023-07-03T10:42:10.2550746Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2551243Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2551732Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2552200Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2552485Z  )
2023-07-03T10:42:10.2552594Z 
2023-07-03T10:42:10.2552809Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:476
2023-07-03T10:42:10.2553059Z 
2023-07-03T10:42:10.2553255Z 55) CodeIgniter\Files\FileCollectionTest::testRemovePatternScope
2023-07-03T10:42:10.2553591Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2553867Z --- Expected
2023-07-03T10:42:10.2554051Z +++ Actual
2023-07-03T10:42:10.2554207Z @@ @@
2023-07-03T10:42:10.2554383Z  Array &0 (
2023-07-03T10:42:10.2554763Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2555240Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2555515Z  )
2023-07-03T10:42:10.2555619Z 
2023-07-03T10:42:10.2555830Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:490
2023-07-03T10:42:10.2556076Z 
2023-07-03T10:42:10.2556253Z 56) CodeIgniter\Files\FileCollectionTest::testRetainPatternRegex
2023-07-03T10:42:10.2556602Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2556880Z --- Expected
2023-07-03T10:42:10.2556947Z +++ Actual
2023-07-03T10:42:10.2557013Z @@ @@
2023-07-03T10:42:10.2557075Z  Array &0 (
2023-07-03T10:42:10.2557345Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2557627Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/prune_ripe.php'
2023-07-03T10:42:10.2557890Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2558172Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\prune_ripe.php'
2023-07-03T10:42:10.2558343Z  )
2023-07-03T10:42:10.2558349Z 
2023-07-03T10:42:10.2558562Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:517
2023-07-03T10:42:10.2558568Z 
2023-07-03T10:42:10.2558761Z 57) CodeIgniter\Files\FileCollectionTest::testRetainPatternPseudo
2023-07-03T10:42:10.2558880Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2558990Z --- Expected
2023-07-03T10:42:10.2559056Z +++ Actual
2023-07-03T10:42:10.2559120Z @@ @@
2023-07-03T10:42:10.2559191Z  Array &0 (
2023-07-03T10:42:10.2559462Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2559720Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2559770Z  )
2023-07-03T10:42:10.2559775Z 
2023-07-03T10:42:10.2559980Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:531
2023-07-03T10:42:10.2559992Z 
2023-07-03T10:42:10.2560179Z 58) CodeIgniter\Files\FileCollectionTest::testRetainPatternScope
2023-07-03T10:42:10.2560311Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2560418Z --- Expected
2023-07-03T10:42:10.2560485Z +++ Actual
2023-07-03T10:42:10.2560549Z @@ @@
2023-07-03T10:42:10.2560605Z  Array &0 (
2023-07-03T10:42:10.2560864Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2561130Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2561473Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2561740Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2561802Z  )
2023-07-03T10:42:10.2561809Z 
2023-07-03T10:42:10.2562017Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileCollectionTest.php:546
2023-07-03T10:42:10.2562022Z 
2023-07-03T10:42:10.2562171Z 59) CodeIgniter\Files\FileTest::testGuessExtension
2023-07-03T10:42:10.2562299Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2562408Z --- Expected
2023-07-03T10:42:10.2562474Z +++ Actual
2023-07-03T10:42:10.2562539Z @@ @@
2023-07-03T10:42:10.2562634Z -'php'
2023-07-03T10:42:10.2562728Z +'bin'
2023-07-03T10:42:10.2562734Z 
2023-07-03T10:42:10.2562917Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileTest.php:49
2023-07-03T10:42:10.2562924Z 
2023-07-03T10:42:10.2563094Z 60) CodeIgniter\Files\FileTest::testGuessExtensionOnZip
2023-07-03T10:42:10.2563216Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2563328Z --- Expected
2023-07-03T10:42:10.2563396Z +++ Actual
2023-07-03T10:42:10.2563458Z @@ @@
2023-07-03T10:42:10.2563552Z -'zip'
2023-07-03T10:42:10.2563645Z +'bin'
2023-07-03T10:42:10.2563652Z 
2023-07-03T10:42:10.2563818Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileTest.php:76
2023-07-03T10:42:10.2563836Z 
2023-07-03T10:42:10.2564044Z 61) CodeIgniter\Files\FileWithVfsTest::testDestinationSameFileSameFolder
2023-07-03T10:42:10.2564180Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2564286Z --- Expected
2023-07-03T10:42:10.2564352Z +++ Actual
2023-07-03T10:42:10.2564415Z @@ @@
2023-07-03T10:42:10.2564605Z -'vfs://root/able/apple_1.php'
2023-07-03T10:42:10.2564754Z +'vfs://root/able\apple_1.php'
2023-07-03T10:42:10.2564760Z 
2023-07-03T10:42:10.2564953Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileWithVfsTest.php:58
2023-07-03T10:42:10.2564958Z 
2023-07-03T10:42:10.2565210Z 62) CodeIgniter\Files\FileWithVfsTest::testDestinationExistingFileDifferentFolder
2023-07-03T10:42:10.2565344Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2565453Z --- Expected
2023-07-03T10:42:10.2565520Z +++ Actual
2023-07-03T10:42:10.2565583Z @@ @@
2023-07-03T10:42:10.2565740Z -'vfs://root/baker/banana_1.php'
2023-07-03T10:42:10.2565883Z +'vfs://root/baker\banana_1.php'
2023-07-03T10:42:10.2565978Z 
2023-07-03T10:42:10.2566181Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileWithVfsTest.php:82
2023-07-03T10:42:10.2566188Z 
2023-07-03T10:42:10.2566374Z 63) CodeIgniter\Files\FileWithVfsTest::testDestinationDelimited
2023-07-03T10:42:10.2566507Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2566616Z --- Expected
2023-07-03T10:42:10.2566683Z +++ Actual
2023-07-03T10:42:10.2566745Z @@ @@
2023-07-03T10:42:10.2566906Z -'vfs://root/able/fig_4.php'
2023-07-03T10:42:10.2567039Z +'vfs://root/able\fig_4.php'
2023-07-03T10:42:10.2567045Z 
2023-07-03T10:42:10.2567248Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileWithVfsTest.php:88
2023-07-03T10:42:10.2567255Z 
2023-07-03T10:42:10.2567458Z 64) CodeIgniter\Files\FileWithVfsTest::testDestinationDelimitedAlpha
2023-07-03T10:42:10.2567592Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2567698Z --- Expected
2023-07-03T10:42:10.2567764Z +++ Actual
2023-07-03T10:42:10.2567828Z @@ @@
2023-07-03T10:42:10.2567986Z -'vfs://root/able/prune_ripe_1.php'
2023-07-03T10:42:10.2568145Z +'vfs://root/able\prune_ripe_1.php'
2023-07-03T10:42:10.2568151Z 
2023-07-03T10:42:10.2568355Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Files\FileWithVfsTest.php:94
2023-07-03T10:42:10.2568361Z 
2023-07-03T10:42:10.2568561Z 65) CodeIgniter\HTTP\Files\FileCollectionTest::testExtensionGuessing
2023-07-03T10:42:10.2568691Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2568799Z --- Expected
2023-07-03T10:42:10.2568864Z +++ Actual
2023-07-03T10:42:10.2568929Z @@ @@
2023-07-03T10:42:10.2569011Z -'txt'
2023-07-03T10:42:10.2569736Z +'csv'
2023-07-03T10:42:10.2569750Z 
2023-07-03T10:42:10.2570443Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\HTTP\Files\FileCollectionTest.php:197
2023-07-03T10:42:10.2570692Z 
2023-07-03T10:42:10.2570993Z 66) CodeIgniter\HTTP\Files\FileMovingTest::testAlreadyMoved
2023-07-03T10:42:10.2571566Z Failed asserting that exception of type "ErrorException" matches expected exception "CodeIgniter\HTTP\Exceptions\HTTPException". Message was: "file_put_contents(/tmp/fileA.txt): Failed to open stream: No such file or directory" at
2023-07-03T10:42:10.2571919Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\HTTP\Files\FileMovingTest.php:338
2023-07-03T10:42:10.2572243Z D:\a\CodeIgniter4\CodeIgniter4\system\HTTP\Files\UploadedFile.php:321
2023-07-03T10:42:10.2572562Z D:\a\CodeIgniter4\CodeIgniter4\system\HTTP\Files\UploadedFile.php:136
2023-07-03T10:42:10.2572913Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\HTTP\Files\FileMovingTest.php:244
2023-07-03T10:42:10.2573110Z .
2023-07-03T10:42:10.2573244Z 
2023-07-03T10:42:10.2573545Z 67) CodeIgniter\HTTP\Files\FileMovingTest::testInvalidFile
2023-07-03T10:42:10.2574115Z Failed asserting that exception of type "ErrorException" matches expected exception "CodeIgniter\HTTP\Exceptions\HTTPException". Message was: "file_put_contents(/tmp/myTempFile.txt): Failed to open stream: No such file or directory" at
2023-07-03T10:42:10.2574455Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\HTTP\Files\FileMovingTest.php:338
2023-07-03T10:42:10.2574784Z D:\a\CodeIgniter4\CodeIgniter4\system\HTTP\Files\UploadedFile.php:321
2023-07-03T10:42:10.2575099Z D:\a\CodeIgniter4\CodeIgniter4\system\HTTP\Files\UploadedFile.php:136
2023-07-03T10:42:10.2575436Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\HTTP\Files\FileMovingTest.php:267
2023-07-03T10:42:10.2575630Z .
2023-07-03T10:42:10.2575825Z 
2023-07-03T10:42:10.2576130Z 68) CodeIgniter\HTTP\Files\FileMovingTest::testFailedMoveBecauseOfWarning
2023-07-03T10:42:10.2576672Z Failed asserting that exception of type "ErrorException" matches expected exception "CodeIgniter\HTTP\Exceptions\HTTPException". Message was: "file_put_contents(/tmp/myTempFile.txt): Failed to open stream: No such file or directory" at
2023-07-03T10:42:10.2576984Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\HTTP\Files\FileMovingTest.php:338
2023-07-03T10:42:10.2577275Z D:\a\CodeIgniter4\CodeIgniter4\system\HTTP\Files\UploadedFile.php:321
2023-07-03T10:42:10.2577684Z D:\a\CodeIgniter4\CodeIgniter4\system\HTTP\Files\UploadedFile.php:136
2023-07-03T10:42:10.2577997Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\HTTP\Files\FileMovingTest.php:293
2023-07-03T10:42:10.2578162Z .
2023-07-03T10:42:10.2578270Z 
2023-07-03T10:42:10.2578609Z 69) CodeIgniter\HTTP\Files\FileMovingTest::testFailedMoveBecauseOfFalseReturned
2023-07-03T10:42:10.2579150Z Failed asserting that exception of type "ErrorException" matches expected exception "CodeIgniter\HTTP\Exceptions\HTTPException". Message was: "file_put_contents(/tmp/fileA.txt): Failed to open stream: No such file or directory" at
2023-07-03T10:42:10.2579458Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\HTTP\Files\FileMovingTest.php:338
2023-07-03T10:42:10.2579743Z D:\a\CodeIgniter4\CodeIgniter4\system\HTTP\Files\UploadedFile.php:321
2023-07-03T10:42:10.2580028Z D:\a\CodeIgniter4\CodeIgniter4\system\HTTP\Files\UploadedFile.php:136
2023-07-03T10:42:10.2580379Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\HTTP\Files\FileMovingTest.php:324
2023-07-03T10:42:10.2580539Z .
2023-07-03T10:42:10.2580633Z 
2023-07-03T10:42:10.2580959Z 70) CodeIgniter\Helpers\FilesystemHelperTest::testGetFilenamesWithoutDirectories
2023-07-03T10:42:10.2581183Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2581435Z --- Expected
2023-07-03T10:42:10.2581596Z +++ Actual
2023-07-03T10:42:10.2581748Z @@ @@
2023-07-03T10:42:10.2581912Z  Array &0 (
2023-07-03T10:42:10.2582150Z -    0 => 'vfs://root/boo/far'
2023-07-03T10:42:10.2582377Z -    1 => 'vfs://root/boo/faz'
2023-07-03T10:42:10.2582603Z -    2 => 'vfs://root/foo/bar'
2023-07-03T10:42:10.2582935Z -    3 => 'vfs://root/foo/baz'
2023-07-03T10:42:10.2583184Z -    4 => 'vfs://root/simpleFile'
2023-07-03T10:42:10.2583420Z +    0 => 'vfs://root\boo\far'
2023-07-03T10:42:10.2583665Z +    1 => 'vfs://root\boo\faz'
2023-07-03T10:42:10.2583900Z +    2 => 'vfs://root\foo\bar'
2023-07-03T10:42:10.2584125Z +    3 => 'vfs://root\foo\baz'
2023-07-03T10:42:10.2584358Z +    4 => 'vfs://root\simpleFile'
2023-07-03T10:42:10.2584512Z  )
2023-07-03T10:42:10.2584606Z 
2023-07-03T10:42:10.2584926Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Helpers\FilesystemHelperTest.php:328
2023-07-03T10:42:10.2585020Z 
2023-07-03T10:42:10.2585342Z 71) CodeIgniter\Helpers\FilesystemHelperTest::testGetFilenamesWithRelativeSource
2023-07-03T10:42:10.2585570Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2585770Z --- Expected
2023-07-03T10:42:10.2585929Z +++ Actual
2023-07-03T10:42:10.2586079Z @@ @@
2023-07-03T10:42:10.2586237Z  Array &0 (
2023-07-03T10:42:10.2586461Z      0 => 'AnEmptyFolder'
2023-07-03T10:42:10.2586646Z      1 => 'boo'
2023-07-03T10:42:10.2586870Z -    2 => 'boo/far'
2023-07-03T10:42:10.2587089Z -    3 => 'boo/faz'
2023-07-03T10:42:10.2587278Z +    2 => 'boo\far'
2023-07-03T10:42:10.2587854Z +    3 => 'boo\faz'
2023-07-03T10:42:10.2587962Z      4 => 'foo'
2023-07-03T10:42:10.2588069Z -    5 => 'foo/bar'
2023-07-03T10:42:10.2588181Z -    6 => 'foo/baz'
2023-07-03T10:42:10.2588288Z +    5 => 'foo\bar'
2023-07-03T10:42:10.2588395Z +    6 => 'foo\baz'
2023-07-03T10:42:10.2588514Z      7 => 'simpleFile'
2023-07-03T10:42:10.2588565Z  )
2023-07-03T10:42:10.2588573Z 
2023-07-03T10:42:10.2588800Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Helpers\FilesystemHelperTest.php:371
2023-07-03T10:42:10.2588807Z 
2023-07-03T10:42:10.2589036Z 72) CodeIgniter\Helpers\FilesystemHelperTest::testGetFilenamesWithFullSource
2023-07-03T10:42:10.2589169Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2589275Z --- Expected
2023-07-03T10:42:10.2589341Z +++ Actual
2023-07-03T10:42:10.2589408Z @@ @@
2023-07-03T10:42:10.2589466Z  Array &0 (
2023-07-03T10:42:10.2589629Z      0 => 'vfs://root\AnEmptyFolder'
2023-07-03T10:42:10.2589760Z      1 => 'vfs://root\boo'
2023-07-03T10:42:10.2589900Z -    2 => 'vfs://root\boo/far'
2023-07-03T10:42:10.2590037Z -    3 => 'vfs://root\boo/faz'
2023-07-03T10:42:10.2590172Z +    2 => 'vfs://root\boo\far'
2023-07-03T10:42:10.2590424Z +    3 => 'vfs://root\boo\faz'
2023-07-03T10:42:10.2590540Z      4 => 'vfs://root\foo'
2023-07-03T10:42:10.2590677Z -    5 => 'vfs://root\foo/bar'
2023-07-03T10:42:10.2590811Z -    6 => 'vfs://root\foo/baz'
2023-07-03T10:42:10.2590943Z +    5 => 'vfs://root\foo\bar'
2023-07-03T10:42:10.2591076Z +    6 => 'vfs://root\foo\baz'
2023-07-03T10:42:10.2591220Z      7 => 'vfs://root\simpleFile'
2023-07-03T10:42:10.2591268Z  )
2023-07-03T10:42:10.2591286Z 
2023-07-03T10:42:10.2591554Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Helpers\FilesystemHelperTest.php:391
2023-07-03T10:42:10.2591686Z 
2023-07-03T10:42:10.2592007Z 73) CodeIgniter\Helpers\FilesystemHelperTest::testGetDirFileInfo
2023-07-03T10:42:10.2592243Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2592595Z --- Expected
2023-07-03T10:42:10.2592765Z +++ Actual
2023-07-03T10:42:10.2592922Z @@ @@
2023-07-03T10:42:10.2593089Z  Array &0 (
2023-07-03T10:42:10.2593336Z      'banana.php' => Array &1 (
2023-07-03T10:42:10.2593580Z          'name' => 'banana.php'
2023-07-03T10:42:10.2594003Z -        'server_path' => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2594397Z +        'server_path' => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2594606Z          'size' => 251
2023-07-03T10:42:10.2594841Z          'date' => 1688380455
2023-07-03T10:42:10.2595227Z -        'relative_path' => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker'
2023-07-03T10:42:10.2595708Z +        'relative_path' => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker'
2023-07-03T10:42:10.2595878Z      )
2023-07-03T10:42:10.2596035Z  )
2023-07-03T10:42:10.2596136Z 
2023-07-03T10:42:10.2596458Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Helpers\FilesystemHelperTest.php:414
2023-07-03T10:42:10.2596559Z 
2023-07-03T10:42:10.2596853Z 74) CodeIgniter\Helpers\FilesystemHelperTest::testGetFileInfoPerms
2023-07-03T10:42:10.2597089Z Failed asserting that 438 is identical to 436.
2023-07-03T10:42:10.2597190Z 
2023-07-03T10:42:10.2597509Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Helpers\FilesystemHelperTest.php:471
2023-07-03T10:42:10.2597611Z 
2023-07-03T10:42:10.2597895Z 75) CodeIgniter\Helpers\FilesystemHelperTest::testRealPathInvalid
2023-07-03T10:42:10.2598190Z Failed asserting that exception of type "InvalidArgumentException" is thrown.
2023-07-03T10:42:10.2598292Z 
2023-07-03T10:42:10.2598580Z 76) CodeIgniter\Helpers\FilesystemHelperTest::testRealPathResolved
2023-07-03T10:42:10.2598817Z Failed asserting that two strings are identical.
2023-07-03T10:42:10.2599019Z --- Expected
2023-07-03T10:42:10.2599194Z +++ Actual
2023-07-03T10:42:10.2599348Z @@ @@
2023-07-03T10:42:10.2599720Z -'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Models/'
2023-07-03T10:42:10.2600035Z +'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Models\'
2023-07-03T10:42:10.2600133Z 
2023-07-03T10:42:10.2600443Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Helpers\FilesystemHelperTest.php:562
2023-07-03T10:42:10.2600542Z 
2023-07-03T10:42:10.2600814Z 77) CodeIgniter\Publisher\PublisherInputTest::testAddPathFile
2023-07-03T10:42:10.2601040Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2601240Z --- Expected
2023-07-03T10:42:10.2601398Z +++ Actual
2023-07-03T10:42:10.2601549Z @@ @@
2023-07-03T10:42:10.2601707Z  Array &0 (
2023-07-03T10:42:10.2602086Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2602452Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2602594Z  )
2023-07-03T10:42:10.2602698Z 
2023-07-03T10:42:10.2603000Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Publisher\PublisherInputTest.php:51
2023-07-03T10:42:10.2603105Z 
2023-07-03T10:42:10.2603426Z 78) CodeIgniter\Publisher\PublisherInputTest::testAddPathFileRecursiveDoesNothing
2023-07-03T10:42:10.2603646Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2603970Z --- Expected
2023-07-03T10:42:10.2604128Z +++ Actual
2023-07-03T10:42:10.2604279Z @@ @@
2023-07-03T10:42:10.2604435Z  Array &0 (
2023-07-03T10:42:10.2604793Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2605147Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2605300Z  )
2023-07-03T10:42:10.2605392Z 
2023-07-03T10:42:10.2605696Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Publisher\PublisherInputTest.php:60
2023-07-03T10:42:10.2605790Z 
2023-07-03T10:42:10.2606088Z 79) CodeIgniter\Publisher\PublisherInputTest::testAddPathDirectory
2023-07-03T10:42:10.2606295Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2606497Z --- Expected
2023-07-03T10:42:10.2606657Z +++ Actual
2023-07-03T10:42:10.2606814Z @@ @@
2023-07-03T10:42:10.2606973Z  Array &0 (
2023-07-03T10:42:10.2607342Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2607696Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2608067Z -    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/prune_ripe.php'
2023-07-03T10:42:10.2608428Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2608765Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2609132Z +    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\prune_ripe.php'
2023-07-03T10:42:10.2609287Z  )
2023-07-03T10:42:10.2609474Z 
2023-07-03T10:42:10.2609800Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Publisher\PublisherInputTest.php:75
2023-07-03T10:42:10.2609894Z 
2023-07-03T10:42:10.2610203Z 80) CodeIgniter\Publisher\PublisherInputTest::testAddPathDirectoryRecursive
2023-07-03T10:42:10.2610427Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2610634Z --- Expected
2023-07-03T10:42:10.2610798Z +++ Actual
2023-07-03T10:42:10.2610949Z @@ @@
2023-07-03T10:42:10.2611105Z  Array &0 (
2023-07-03T10:42:10.2611459Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2611811Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2612166Z -    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/prune_ripe.php'
2023-07-03T10:42:10.2612534Z -    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2612893Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2613237Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2613604Z +    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\prune_ripe.php'
2023-07-03T10:42:10.2613967Z +    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2614129Z  )
2023-07-03T10:42:10.2614235Z 
2023-07-03T10:42:10.2614545Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Publisher\PublisherInputTest.php:91
2023-07-03T10:42:10.2614640Z 
2023-07-03T10:42:10.2614906Z 81) CodeIgniter\Publisher\PublisherInputTest::testAddPaths
2023-07-03T10:42:10.2615147Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2615352Z --- Expected
2023-07-03T10:42:10.2615511Z +++ Actual
2023-07-03T10:42:10.2615664Z @@ @@
2023-07-03T10:42:10.2615824Z  Array &0 (
2023-07-03T10:42:10.2616277Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2616621Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2616992Z -    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/prune_ripe.php'
2023-07-03T10:42:10.2617349Z -    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2617698Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2618145Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2618513Z +    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\prune_ripe.php'
2023-07-03T10:42:10.2618874Z +    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2619028Z  )
2023-07-03T10:42:10.2619122Z 
2023-07-03T10:42:10.2619435Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Publisher\PublisherInputTest.php:110
2023-07-03T10:42:10.2619527Z 
2023-07-03T10:42:10.2619819Z 82) CodeIgniter\Publisher\PublisherInputTest::testAddPathsRecursive
2023-07-03T10:42:10.2620044Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2620242Z --- Expected
2023-07-03T10:42:10.2620388Z +++ Actual
2023-07-03T10:42:10.2620538Z @@ @@
2023-07-03T10:42:10.2620695Z  Array &0 (
2023-07-03T10:42:10.2621048Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/apple.php'
2023-07-03T10:42:10.2621400Z -    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2621767Z -    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/prune_ripe.php'
2023-07-03T10:42:10.2622124Z -    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2622520Z -    4 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Log/Handlers/TestHandler.php'
2023-07-03T10:42:10.2622864Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\apple.php'
2023-07-03T10:42:10.2623308Z +    1 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2623688Z +    2 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\prune_ripe.php'
2023-07-03T10:42:10.2624049Z +    3 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2624436Z +    4 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Log\Handlers\TestHandler.php'
2023-07-03T10:42:10.2624594Z  )
2023-07-03T10:42:10.2624688Z 
2023-07-03T10:42:10.2624999Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Publisher\PublisherInputTest.php:130
2023-07-03T10:42:10.2625093Z 
2023-07-03T10:42:10.2625379Z 83) CodeIgniter\Publisher\PublisherOutputTest::testCopyIgnoresSame
2023-07-03T10:42:10.2625600Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2625803Z --- Expected
2023-07-03T10:42:10.2625962Z +++ Actual
2023-07-03T10:42:10.2626117Z @@ @@
2023-07-03T10:42:10.2626276Z  Array &0 (
2023-07-03T10:42:10.2626529Z -    0 => 'vfs://root/banana.php'
2023-07-03T10:42:10.2626775Z +    0 => 'vfs://root\banana.php'
2023-07-03T10:42:10.2626929Z  )
2023-07-03T10:42:10.2627020Z 
2023-07-03T10:42:10.2627339Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Publisher\PublisherOutputTest.php:121
2023-07-03T10:42:10.2627434Z 
2023-07-03T10:42:10.2627732Z 84) CodeIgniter\Publisher\PublisherOutputTest::testCopyIgnoresCollision
2023-07-03T10:42:10.2627954Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2628159Z --- Expected
2023-07-03T10:42:10.2628318Z +++ Actual
2023-07-03T10:42:10.2628468Z @@ @@
2023-07-03T10:42:10.2628615Z  Array &0 (
2023-07-03T10:42:10.2628861Z -    0 => 'vfs://root/banana.php'
2023-07-03T10:42:10.2629103Z +    0 => 'vfs://root\banana.php'
2023-07-03T10:42:10.2629255Z  )
2023-07-03T10:42:10.2629361Z 
2023-07-03T10:42:10.2629677Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Publisher\PublisherOutputTest.php:134
2023-07-03T10:42:10.2629770Z 
2023-07-03T10:42:10.2630042Z 85) CodeIgniter\Publisher\PublisherOutputTest::testCopyCollides
2023-07-03T10:42:10.2630268Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2630471Z --- Expected
2023-07-03T10:42:10.2630633Z +++ Actual
2023-07-03T10:42:10.2630773Z @@ @@
2023-07-03T10:42:10.2630931Z  Array &0 (
2023-07-03T10:42:10.2631298Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2631656Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2631907Z  )
2023-07-03T10:42:10.2632000Z 
2023-07-03T10:42:10.2632311Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Publisher\PublisherOutputTest.php:149
2023-07-03T10:42:10.2632404Z 
2023-07-03T10:42:10.2632663Z 86) CodeIgniter\Publisher\PublisherOutputTest::testMerge
2023-07-03T10:42:10.2632889Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2633091Z --- Expected
2023-07-03T10:42:10.2633254Z +++ Actual
2023-07-03T10:42:10.2633404Z @@ @@
2023-07-03T10:42:10.2633549Z  Array &0 (
2023-07-03T10:42:10.2633806Z -    0 => 'vfs://root/able/apple.php'
2023-07-03T10:42:10.2634058Z -    1 => 'vfs://root/able/fig_3.php'
2023-07-03T10:42:10.2634393Z -    2 => 'vfs://root/able/prune_ripe.php'
2023-07-03T10:42:10.2634655Z -    3 => 'vfs://root/baker/banana.php'
2023-07-03T10:42:10.2634910Z +    0 => 'vfs://root\able\apple.php'
2023-07-03T10:42:10.2635161Z +    1 => 'vfs://root\able\fig_3.php'
2023-07-03T10:42:10.2635441Z +    2 => 'vfs://root\able\prune_ripe.php'
2023-07-03T10:42:10.2635698Z +    3 => 'vfs://root\baker\banana.php'
2023-07-03T10:42:10.2635839Z  )
2023-07-03T10:42:10.2635943Z 
2023-07-03T10:42:10.2636264Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Publisher\PublisherOutputTest.php:172
2023-07-03T10:42:10.2636354Z 
2023-07-03T10:42:10.2636636Z 87) CodeIgniter\Publisher\PublisherOutputTest::testMergeReplace
2023-07-03T10:42:10.2636972Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2637176Z --- Expected
2023-07-03T10:42:10.2637323Z +++ Actual
2023-07-03T10:42:10.2637492Z @@ @@
2023-07-03T10:42:10.2637753Z  Array &0 (
2023-07-03T10:42:10.2638021Z -    0 => 'vfs://root/able/apple.php'
2023-07-03T10:42:10.2638274Z -    1 => 'vfs://root/able/fig_3.php'
2023-07-03T10:42:10.2638541Z -    2 => 'vfs://root/able/prune_ripe.php'
2023-07-03T10:42:10.2638798Z -    3 => 'vfs://root/baker/banana.php'
2023-07-03T10:42:10.2639048Z +    0 => 'vfs://root\able\apple.php'
2023-07-03T10:42:10.2639303Z +    1 => 'vfs://root\able\fig_3.php'
2023-07-03T10:42:10.2639559Z +    2 => 'vfs://root\able\prune_ripe.php'
2023-07-03T10:42:10.2639818Z +    3 => 'vfs://root\baker\banana.php'
2023-07-03T10:42:10.2639976Z  )
2023-07-03T10:42:10.2640071Z 
2023-07-03T10:42:10.2640392Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Publisher\PublisherOutputTest.php:190
2023-07-03T10:42:10.2640488Z 
2023-07-03T10:42:10.2640767Z 88) CodeIgniter\Publisher\PublisherOutputTest::testMergeCollides
2023-07-03T10:42:10.2640993Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2641198Z --- Expected
2023-07-03T10:42:10.2641361Z +++ Actual
2023-07-03T10:42:10.2641518Z @@ @@
2023-07-03T10:42:10.2641677Z  Array &0 (
2023-07-03T10:42:10.2642044Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/able/fig_3.php'
2023-07-03T10:42:10.2642388Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\able\fig_3.php'
2023-07-03T10:42:10.2642541Z  )
2023-07-03T10:42:10.2642633Z 
2023-07-03T10:42:10.2642954Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Publisher\PublisherOutputTest.php:210
2023-07-03T10:42:10.2643061Z 
2023-07-03T10:42:10.2643347Z 89) CodeIgniter\Publisher\PublisherSupportTest::testDiscoverStores
2023-07-03T10:42:10.2643574Z Failed asserting that two arrays are identical.
2023-07-03T10:42:10.2643784Z --- Expected
2023-07-03T10:42:10.2643944Z +++ Actual
2023-07-03T10:42:10.2644099Z @@ @@
2023-07-03T10:42:10.2644264Z  Array &0 (
2023-07-03T10:42:10.2644624Z -    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files/baker/banana.php'
2023-07-03T10:42:10.2644986Z +    0 => 'D:\a\CodeIgniter4\CodeIgniter4\tests\_support\Files\baker\banana.php'
2023-07-03T10:42:10.2645138Z  )
2023-07-03T10:42:10.2645232Z 
2023-07-03T10:42:10.2645553Z D:\a\CodeIgniter4\CodeIgniter4\tests\system\Publisher\PublisherSupportTest.php:69
2023-07-03T10:42:10.2645648Z 
2023-07-03T10:42:10.2645829Z --

@github-actions

This comment was marked as off-topic.

@kenjis kenjis removed the stale Pull requests with conflicts label Sep 20, 2023
@paulbalandan
Copy link
Member Author

I'll have to do this some other time.

@paulbalandan paulbalandan deleted the windows-tests branch January 29, 2024 16:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
github_actions Pull requests that update Github_actions code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants