File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tests/end-to-end/regression Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11--TEST--
2- #2448: Weird error when trying to run `Test` from `Test .php` but `Test .php` does not exist
2+ #2448: Weird error when trying to run `Test` from `SomeNonExistingTest .php` but `SomeNonExistingTest .php` does not exist
33--FILE--
44<?php declare (strict_types=1 );
55$ _SERVER ['argv ' ][] = '--do-not-cache-result ' ;
66$ _SERVER ['argv ' ][] = '--no-configuration ' ;
7- $ _SERVER ['argv ' ][] = 'Test .php ' ;
7+ $ _SERVER ['argv ' ][] = 'SomeNonExistingTest .php ' ;
88
99require_once __DIR__ . '/../../bootstrap.php ' ;
1010(new PHPUnit \TextUI \Application )->run ($ _SERVER ['argv ' ]);
1111--EXPECTF --
1212PHPUnit %s by Sebastian Bergmann and contributors.
1313
14- Test file "Test .php " not found
14+ Test file "SomeNonExistingTest .php " not found
1515--CLEAN --
1616<?php declare (strict_types=1 );
1717unlink (__DIR__ . '/2448/.phpunit.result.cache ' );
You can’t perform that action at this time.
0 commit comments