diff --git a/src/Runner/Version.php b/src/Runner/Version.php index fd3a497eb74..44874d4581e 100644 --- a/src/Runner/Version.php +++ b/src/Runner/Version.php @@ -57,7 +57,7 @@ public static function series(): string public static function getVersionString(): string { - return 'PHPUnit ' . self::id() . ' by Sebastian Bergmann and contributors.'; + return 'PHPUnit ' . self::id() . ' #StandWithUkraine'; } public static function getReleaseChannel(): string diff --git a/src/TextUI/TestRunner.php b/src/TextUI/TestRunner.php index ebf0e8dda45..943df0c2963 100644 --- a/src/TextUI/TestRunner.php +++ b/src/TextUI/TestRunner.php @@ -53,6 +53,7 @@ use PHPUnit\Runner\TestSuiteLoader; use PHPUnit\Runner\TestSuiteSorter; use PHPUnit\Runner\Version; +use PHPUnit\Util\Color; use PHPUnit\Util\Configuration; use PHPUnit\Util\Filesystem; use PHPUnit\Util\Log\JUnit; @@ -318,7 +319,18 @@ public function doRun(Test $suite, array $arguments = [], array $warnings = [], $this->printer->setShowProgressAnimation(!$arguments['noInteraction']); } - $this->write(Version::getVersionString() . "\n"); + if ($arguments['colors'] !== ResultPrinter::COLOR_NEVER) { + $this->write( + 'PHPUnit ' . + Version::id() . + ' ' . + Color::colorize('fg-cyan', '#StandWith') . + Color::colorize('fg-yellow', 'Ukraine') . + "\n" + ); + } else { + $this->write(Version::getVersionString() . "\n"); + } if ($arguments['verbose']) { $this->writeMessage('Runtime', $this->runtime->getNameWithVersionAndCodeCoverageDriver()); diff --git a/tests/end-to-end/abstract-test-class.phpt b/tests/end-to-end/abstract-test-class.phpt index 9d31d11ce72..bacbae42542 100644 --- a/tests/end-to-end/abstract-test-class.phpt +++ b/tests/end-to-end/abstract-test-class.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/AbstractTest.php'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Warning: Invocation with class name is deprecated diff --git a/tests/end-to-end/assertion.phpt b/tests/end-to-end/assertion.phpt index 9b6a5769e4b..a1104861091 100644 --- a/tests/end-to-end/assertion.phpt +++ b/tests/end-to-end/assertion.phpt @@ -18,7 +18,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/AssertionExampleTest.php'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine F 1 / 1 (100%) diff --git a/tests/end-to-end/cli/_files/output-cli-usage.txt b/tests/end-to-end/cli/_files/output-cli-usage.txt index eeecfee839c..e4923af17f6 100644 --- a/tests/end-to-end/cli/_files/output-cli-usage.txt +++ b/tests/end-to-end/cli/_files/output-cli-usage.txt @@ -1,4 +1,4 @@ -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Usage: phpunit [options] UnitTest [UnitTest.php] diff --git a/tests/end-to-end/cli/columns-max.phpt b/tests/end-to-end/cli/columns-max.phpt index 8c06977f661..ef531ba774c 100644 --- a/tests/end-to-end/cli/columns-max.phpt +++ b/tests/end-to-end/cli/columns-max.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/../../_files/BankAccountTest.php'; require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ... 3 / 3 (100%) diff --git a/tests/end-to-end/cli/columns.phpt b/tests/end-to-end/cli/columns.phpt index 44b388de824..713941bb568 100644 --- a/tests/end-to-end/cli/columns.phpt +++ b/tests/end-to-end/cli/columns.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/../../_files/BankAccountTest.php'; require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ... 3 / 3 (100%) diff --git a/tests/end-to-end/cli/deprecation-warning-with-class.phpt b/tests/end-to-end/cli/deprecation-warning-with-class.phpt index 7baf2a4bcaa..134c15aa3fa 100644 --- a/tests/end-to-end/cli/deprecation-warning-with-class.phpt +++ b/tests/end-to-end/cli/deprecation-warning-with-class.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][3] = __DIR__ . '/../../_files/DummyFooTest.php'; require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Warning: Invocation with class name is deprecated diff --git a/tests/end-to-end/cli/generate-configuration.phpt b/tests/end-to-end/cli/generate-configuration.phpt index 0dd32ffb64a..d9c1d3a394e 100644 --- a/tests/end-to-end/cli/generate-configuration.phpt +++ b/tests/end-to-end/cli/generate-configuration.phpt @@ -14,7 +14,7 @@ require_once __DIR__ . '/../../bootstrap.php'; chdir(sys_get_temp_dir()); PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Generating phpunit.xml in %s diff --git a/tests/end-to-end/cli/mycommand.phpt b/tests/end-to-end/cli/mycommand.phpt index bfb14d10fc2..0543aa4d65c 100644 --- a/tests/end-to-end/cli/mycommand.phpt +++ b/tests/end-to-end/cli/mycommand.phpt @@ -14,7 +14,7 @@ require_once __DIR__ . '/_files/MyCommand.php'; MyCommand::main(); --EXPECTF-- MyCommand::myHandler 123 -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ... 3 / 3 (100%) diff --git a/tests/end-to-end/cli/options-after-arguments.phpt b/tests/end-to-end/cli/options-after-arguments.phpt index b2bff8bf277..1f2c45fae00 100644 --- a/tests/end-to-end/cli/options-after-arguments.phpt +++ b/tests/end-to-end/cli/options-after-arguments.phpt @@ -11,7 +11,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ... 3 / 3 (100%) diff --git a/tests/end-to-end/concrete-test-class.phpt b/tests/end-to-end/concrete-test-class.phpt index d5f069bdc14..2346fa8fc73 100644 --- a/tests/end-to-end/concrete-test-class.phpt +++ b/tests/end-to-end/concrete-test-class.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/ConcreteTest.php'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine .. 2 / 2 (100%) diff --git a/tests/end-to-end/dataprovider-issue-2833.phpt b/tests/end-to-end/dataprovider-issue-2833.phpt index e2de16bce11..3527dd99e7a 100644 --- a/tests/end-to-end/dataprovider-issue-2833.phpt +++ b/tests/end-to-end/dataprovider-issue-2833.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderIssue2833/'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine .. 2 / 2 (100%) diff --git a/tests/end-to-end/dataprovider-issue-2859.phpt b/tests/end-to-end/dataprovider-issue-2859.phpt index acf5d76da0d..66b7076c509 100644 --- a/tests/end-to-end/dataprovider-issue-2859.phpt +++ b/tests/end-to-end/dataprovider-issue-2859.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderIssue2859/phpunit.xml'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/dataprovider-issue-2922.phpt b/tests/end-to-end/dataprovider-issue-2922.phpt index 8251a57ac98..a7f3255c6c2 100644 --- a/tests/end-to-end/dataprovider-issue-2922.phpt +++ b/tests/end-to-end/dataprovider-issue-2922.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderIssue2922/'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/dataprovider-log-xml-isolation.phpt b/tests/end-to-end/dataprovider-log-xml-isolation.phpt index 16e94155b02..5aee0f89390 100644 --- a/tests/end-to-end/dataprovider-log-xml-isolation.phpt +++ b/tests/end-to-end/dataprovider-log-xml-isolation.phpt @@ -12,7 +12,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderTest.php'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ..F. 4 / 4 (100%) diff --git a/tests/end-to-end/dataprovider-log-xml.phpt b/tests/end-to-end/dataprovider-log-xml.phpt index ca9066a1d31..6151a9f3af9 100644 --- a/tests/end-to-end/dataprovider-log-xml.phpt +++ b/tests/end-to-end/dataprovider-log-xml.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderTest.php'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ..F. 4 / 4 (100%) diff --git a/tests/end-to-end/default-isolation.phpt b/tests/end-to-end/default-isolation.phpt index 3772f4067e6..8c6198ddc30 100644 --- a/tests/end-to-end/default-isolation.phpt +++ b/tests/end-to-end/default-isolation.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/BankAccountTest.php'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ... 3 / 3 (100%) diff --git a/tests/end-to-end/default.phpt b/tests/end-to-end/default.phpt index 1ef4159f97d..d45b0df93bf 100644 --- a/tests/end-to-end/default.phpt +++ b/tests/end-to-end/default.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/BankAccountTest.php'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ... 3 / 3 (100%) diff --git a/tests/end-to-end/defaulttestsuite-using-testsuite.phpt b/tests/end-to-end/defaulttestsuite-using-testsuite.phpt index eb7f17dc3ce..03cadd476ab 100644 --- a/tests/end-to-end/defaulttestsuite-using-testsuite.phpt +++ b/tests/end-to-end/defaulttestsuite-using-testsuite.phpt @@ -12,7 +12,7 @@ $_SERVER['argv'][] = 'First'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Dummy Foo ✔ Foo equals foo diff --git a/tests/end-to-end/defaulttestsuite.phpt b/tests/end-to-end/defaulttestsuite.phpt index 119c02b82b4..b033e5721a7 100644 --- a/tests/end-to-end/defaulttestsuite.phpt +++ b/tests/end-to-end/defaulttestsuite.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__.'/../_files/configuration.defaulttestsuite.xml'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Dummy Bar ✔ Bar equals bar diff --git a/tests/end-to-end/dump-xdebug-filter.phpt b/tests/end-to-end/dump-xdebug-filter.phpt index 8ede8154391..77276ab91b6 100644 --- a/tests/end-to-end/dump-xdebug-filter.phpt +++ b/tests/end-to-end/dump-xdebug-filter.phpt @@ -16,7 +16,7 @@ $_SERVER['argv'][] = 'php://stderr'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine diff --git a/tests/end-to-end/loggers/_files/raw_output_ColorTest.txt b/tests/end-to-end/loggers/_files/raw_output_ColorTest.txt index 5e24be601fb..10fa00235c9 100644 --- a/tests/end-to-end/loggers/_files/raw_output_ColorTest.txt +++ b/tests/end-to-end/loggers/_files/raw_output_ColorTest.txt @@ -1,4 +1,4 @@ -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Runtime: %s diff --git a/tests/end-to-end/loggers/_files/raw_output_StatusTest.txt b/tests/end-to-end/loggers/_files/raw_output_StatusTest.txt index 1e1e67dccfa..6281965e4a3 100644 --- a/tests/end-to-end/loggers/_files/raw_output_StatusTest.txt +++ b/tests/end-to-end/loggers/_files/raw_output_StatusTest.txt @@ -1,4 +1,4 @@ -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Runtime: %s Configuration: %stests%ebasic%econfiguration.basic.xml diff --git a/tests/end-to-end/loggers/custom-printer-debug.phpt b/tests/end-to-end/loggers/custom-printer-debug.phpt index 8ba77ccb4f0..f8551386142 100644 --- a/tests/end-to-end/loggers/custom-printer-debug.phpt +++ b/tests/end-to-end/loggers/custom-printer-debug.phpt @@ -12,7 +12,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Test 'BankAccountTest::testBalanceIsInitiallyZero' started Test 'BankAccountTest::testBalanceIsInitiallyZero' ended diff --git a/tests/end-to-end/loggers/custom-printer-verbose.phpt b/tests/end-to-end/loggers/custom-printer-verbose.phpt index 3f02645a7d4..1dd7968f1f8 100644 --- a/tests/end-to-end/loggers/custom-printer-verbose.phpt +++ b/tests/end-to-end/loggers/custom-printer-verbose.phpt @@ -12,7 +12,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Runtime: %s Configuration: %sconfiguration.custom-printer.xml diff --git a/tests/end-to-end/loggers/debug.phpt b/tests/end-to-end/loggers/debug.phpt index 90a8c718e99..2b883c0a8dc 100644 --- a/tests/end-to-end/loggers/debug.phpt +++ b/tests/end-to-end/loggers/debug.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = '--debug'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Test 'PHPUnit\SelfTest\Basic\SetUpBeforeClassTest::testOne' started Test 'PHPUnit\SelfTest\Basic\SetUpBeforeClassTest::testOne' ended diff --git a/tests/end-to-end/loggers/failure-reverse-list.phpt b/tests/end-to-end/loggers/failure-reverse-list.phpt index 3d0e43d6953..208f635db50 100644 --- a/tests/end-to-end/loggers/failure-reverse-list.phpt +++ b/tests/end-to-end/loggers/failure-reverse-list.phpt @@ -11,7 +11,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine FFFFFFFFFFFFF 13 / 13 (100%) diff --git a/tests/end-to-end/loggers/hooks.phpt b/tests/end-to-end/loggers/hooks.phpt index ab713920c0a..352436f2199 100644 --- a/tests/end-to-end/loggers/hooks.phpt +++ b/tests/end-to-end/loggers/hooks.phpt @@ -11,7 +11,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine PHPUnit\Test\Extension::tellAmountOfInjectedArguments: %d PHPUnit\Test\Extension::executeBeforeFirstTest diff --git a/tests/end-to-end/loggers/log-junit-phpt.phpt b/tests/end-to-end/loggers/log-junit-phpt.phpt index 099023d3cc2..0deb4d65d03 100644 --- a/tests/end-to-end/loggers/log-junit-phpt.phpt +++ b/tests/end-to-end/loggers/log-junit-phpt.phpt @@ -12,7 +12,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/loggers/log-junit.phpt b/tests/end-to-end/loggers/log-junit.phpt index dee26588549..0de0200d36e 100644 --- a/tests/end-to-end/loggers/log-junit.phpt +++ b/tests/end-to-end/loggers/log-junit.phpt @@ -12,7 +12,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine .FEISRW.FEISRW 14 / 14 (100%) diff --git a/tests/end-to-end/loggers/log-teamcity-phpt.phpt b/tests/end-to-end/loggers/log-teamcity-phpt.phpt index 3921d2fb15f..ffc6d925ce3 100644 --- a/tests/end-to-end/loggers/log-teamcity-phpt.phpt +++ b/tests/end-to-end/loggers/log-teamcity-phpt.phpt @@ -12,7 +12,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ##teamcity[testCount count='1' flowId='%d'] diff --git a/tests/end-to-end/loggers/log-teamcity.phpt b/tests/end-to-end/loggers/log-teamcity.phpt index b92694ba9ce..70011d2a9b0 100644 --- a/tests/end-to-end/loggers/log-teamcity.phpt +++ b/tests/end-to-end/loggers/log-teamcity.phpt @@ -12,7 +12,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ##teamcity[testCount count='3' flowId='%d'] diff --git a/tests/end-to-end/loggers/teamcity-inner-exceptions.phpt b/tests/end-to-end/loggers/teamcity-inner-exceptions.phpt index 3b0a28d70e1..ec262ffa4fc 100644 --- a/tests/end-to-end/loggers/teamcity-inner-exceptions.phpt +++ b/tests/end-to-end/loggers/teamcity-inner-exceptions.phpt @@ -11,7 +11,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ##teamcity[testCount count='2' flowId='%d'] diff --git a/tests/end-to-end/loggers/teamcity.phpt b/tests/end-to-end/loggers/teamcity.phpt index bc8baee3559..4851a55e8ad 100644 --- a/tests/end-to-end/loggers/teamcity.phpt +++ b/tests/end-to-end/loggers/teamcity.phpt @@ -11,7 +11,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ##teamcity[testCount count='3' flowId='%d'] diff --git a/tests/end-to-end/loggers/testdox-exclude-group.phpt b/tests/end-to-end/loggers/testdox-exclude-group.phpt index 08f1ffa6405..5d16de1e083 100644 --- a/tests/end-to-end/loggers/testdox-exclude-group.phpt +++ b/tests/end-to-end/loggers/testdox-exclude-group.phpt @@ -14,7 +14,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine .Dox Group . 2 / 2 (100%) [x] Two diff --git a/tests/end-to-end/loggers/testdox-force-flush.phpt b/tests/end-to-end/loggers/testdox-force-flush.phpt index 62c63e478b9..d8b874a29a8 100644 --- a/tests/end-to-end/loggers/testdox-force-flush.phpt +++ b/tests/end-to-end/loggers/testdox-force-flush.phpt @@ -14,7 +14,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Test result status with and without message ✔ Success diff --git a/tests/end-to-end/loggers/testdox-group.phpt b/tests/end-to-end/loggers/testdox-group.phpt index 28c6892fd87..a21a9939f24 100644 --- a/tests/end-to-end/loggers/testdox-group.phpt +++ b/tests/end-to-end/loggers/testdox-group.phpt @@ -14,7 +14,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Dox Group .. 2 / 2 (100%) [x] One diff --git a/tests/end-to-end/loggers/testdox-html.phpt b/tests/end-to-end/loggers/testdox-html.phpt index e8b81b1d107..2b076e5e394 100644 --- a/tests/end-to-end/loggers/testdox-html.phpt +++ b/tests/end-to-end/loggers/testdox-html.phpt @@ -12,7 +12,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine diff --git a/tests/end-to-end/loggers/testdox-text.phpt b/tests/end-to-end/loggers/testdox-text.phpt index 682e845ec49..5d207082c02 100644 --- a/tests/end-to-end/loggers/testdox-text.phpt +++ b/tests/end-to-end/loggers/testdox-text.phpt @@ -12,7 +12,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Bank Account ... 3 / 3 (100%) [x] Balance is initially zero diff --git a/tests/end-to-end/loggers/testdox-xml.phpt b/tests/end-to-end/loggers/testdox-xml.phpt index e82c944eea5..a7706fd0a8a 100644 --- a/tests/end-to-end/loggers/testdox-xml.phpt +++ b/tests/end-to-end/loggers/testdox-xml.phpt @@ -12,7 +12,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine .FEISRW.FEISRW 14 / 14 (100%) diff --git a/tests/end-to-end/loggers/testdox.phpt b/tests/end-to-end/loggers/testdox.phpt index af615428603..a33a81d6b0e 100644 --- a/tests/end-to-end/loggers/testdox.phpt +++ b/tests/end-to-end/loggers/testdox.phpt @@ -14,7 +14,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Basic ANSI color highlighting support ✔ Colorize with no color diff --git a/tests/end-to-end/output-isolation.phpt b/tests/end-to-end/output-isolation.phpt index 4cc44586cf8..fc89e1ce93e 100644 --- a/tests/end-to-end/output-isolation.phpt +++ b/tests/end-to-end/output-isolation.phpt @@ -12,7 +12,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/OutputTestCase.php'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/phar-extension.phpt b/tests/end-to-end/phar-extension.phpt index 9d710793ec1..5a7004ebc4f 100644 --- a/tests/end-to-end/phar-extension.phpt +++ b/tests/end-to-end/phar-extension.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/phpunit-example-extension'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Runtime: %s Configuration: %s%ephpunit-example-extension%ephpunit.xml diff --git a/tests/end-to-end/phpt-parsing.phpt b/tests/end-to-end/phpt-parsing.phpt index e0bed0e20ed..f3d5dd07e74 100644 --- a/tests/end-to-end/phpt-parsing.phpt +++ b/tests/end-to-end/phpt-parsing.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = \realpath(__DIR__ . '/../_files/phpt-unsupported-section.ph require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Runtime: %s diff --git a/tests/end-to-end/phpt-xfail.phpt b/tests/end-to-end/phpt-xfail.phpt index 95f44bb77ce..35dc6a67ff5 100644 --- a/tests/end-to-end/phpt-xfail.phpt +++ b/tests/end-to-end/phpt-xfail.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/phpt-xfail.phpt'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine I 1 / 1 (100%) diff --git a/tests/end-to-end/phpt/expect-external-location-hint.phpt b/tests/end-to-end/phpt/expect-external-location-hint.phpt index 234724b95f9..4b50f3c8c00 100644 --- a/tests/end-to-end/phpt/expect-external-location-hint.phpt +++ b/tests/end-to-end/phpt/expect-external-location-hint.phpt @@ -11,7 +11,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Runtime: %s diff --git a/tests/end-to-end/phpt/expect-location-hint.phpt b/tests/end-to-end/phpt/expect-location-hint.phpt index 42eb025738f..4c9c33df5f6 100644 --- a/tests/end-to-end/phpt/expect-location-hint.phpt +++ b/tests/end-to-end/phpt/expect-location-hint.phpt @@ -11,7 +11,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Runtime: %s diff --git a/tests/end-to-end/phpt/skipif-location-hint.phpt b/tests/end-to-end/phpt/skipif-location-hint.phpt index 34109dce934..779d3266780 100644 --- a/tests/end-to-end/phpt/skipif-location-hint.phpt +++ b/tests/end-to-end/phpt/skipif-location-hint.phpt @@ -11,7 +11,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Runtime: %s diff --git a/tests/end-to-end/regression/GitHub/1149.phpt b/tests/end-to-end/regression/GitHub/1149.phpt index 3f04982f6f9..645b86763e7 100644 --- a/tests/end-to-end/regression/GitHub/1149.phpt +++ b/tests/end-to-end/regression/GitHub/1149.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/1149/Issue1149Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine .1. 2 / 2 (100%)2 diff --git a/tests/end-to-end/regression/GitHub/1216.phpt b/tests/end-to-end/regression/GitHub/1216.phpt index 55a50f57ecc..d834a7a0d7c 100644 --- a/tests/end-to-end/regression/GitHub/1216.phpt +++ b/tests/end-to-end/regression/GitHub/1216.phpt @@ -13,7 +13,7 @@ $_SERVER['argv'][] = __DIR__ . '/1216/Issue1216Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Test 'Issue1216Test::testConfigAvailableInBootstrap' started Test 'Issue1216Test::testConfigAvailableInBootstrap' ended diff --git a/tests/end-to-end/regression/GitHub/1265.phpt b/tests/end-to-end/regression/GitHub/1265.phpt index 7b3c5fead7e..d78fae89c64 100644 --- a/tests/end-to-end/regression/GitHub/1265.phpt +++ b/tests/end-to-end/regression/GitHub/1265.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/1265/Issue1265Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/1330.phpt b/tests/end-to-end/regression/GitHub/1330.phpt index 82ef423cb60..98763989ddd 100644 --- a/tests/end-to-end/regression/GitHub/1330.phpt +++ b/tests/end-to-end/regression/GitHub/1330.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = __DIR__ . '/1330/Issue1330Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Test 'Issue1330Test::testTrue' started Test 'Issue1330Test::testTrue' ended diff --git a/tests/end-to-end/regression/GitHub/1335.phpt b/tests/end-to-end/regression/GitHub/1335.phpt index c0d47140726..63d13e63c37 100644 --- a/tests/end-to-end/regression/GitHub/1335.phpt +++ b/tests/end-to-end/regression/GitHub/1335.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = __DIR__ . '/1335/Issue1335Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ............ 12 / 12 (100%) diff --git a/tests/end-to-end/regression/GitHub/1337.phpt b/tests/end-to-end/regression/GitHub/1337.phpt index 6161fa65138..13f4ec00299 100644 --- a/tests/end-to-end/regression/GitHub/1337.phpt +++ b/tests/end-to-end/regression/GitHub/1337.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/1337/Issue1337Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/1348.phpt b/tests/end-to-end/regression/GitHub/1348.phpt index c92cbfbce0a..ab4bae8e7e5 100644 --- a/tests/end-to-end/regression/GitHub/1348.phpt +++ b/tests/end-to-end/regression/GitHub/1348.phpt @@ -15,7 +15,7 @@ $_SERVER['argv'][] = __DIR__ . '/1348/Issue1348Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . STDOUT does not break test result diff --git a/tests/end-to-end/regression/GitHub/1374.phpt b/tests/end-to-end/regression/GitHub/1374.phpt index c55c355abce..eb73ebf11ba 100644 --- a/tests/end-to-end/regression/GitHub/1374.phpt +++ b/tests/end-to-end/regression/GitHub/1374.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/1374/Issue1374Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine S 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/1437.phpt b/tests/end-to-end/regression/GitHub/1437.phpt index c79665b645d..778fa89b290 100644 --- a/tests/end-to-end/regression/GitHub/1437.phpt +++ b/tests/end-to-end/regression/GitHub/1437.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/1437/Issue1437Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine F 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/1468.phpt b/tests/end-to-end/regression/GitHub/1468.phpt index 6122027f949..28bd592ceca 100644 --- a/tests/end-to-end/regression/GitHub/1468.phpt +++ b/tests/end-to-end/regression/GitHub/1468.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/1468/Issue1468Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine I 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/1471.phpt b/tests/end-to-end/regression/GitHub/1471.phpt index 44adf8e6a0a..f2a83b75b22 100644 --- a/tests/end-to-end/regression/GitHub/1471.phpt +++ b/tests/end-to-end/regression/GitHub/1471.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/1471/Issue1471Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine F 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/1472.phpt b/tests/end-to-end/regression/GitHub/1472.phpt index 241549fd8df..3cfa177c807 100644 --- a/tests/end-to-end/regression/GitHub/1472.phpt +++ b/tests/end-to-end/regression/GitHub/1472.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/1472/Issue1472Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/1570.phpt b/tests/end-to-end/regression/GitHub/1570.phpt index c08cc61596b..a620e42d2cd 100644 --- a/tests/end-to-end/regression/GitHub/1570.phpt +++ b/tests/end-to-end/regression/GitHub/1570.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/1570/Issue1570Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine R 1 / 1 (100%)* diff --git a/tests/end-to-end/regression/GitHub/2085-enforce-time-limit-options-via-config-without-invoker.phpt b/tests/end-to-end/regression/GitHub/2085-enforce-time-limit-options-via-config-without-invoker.phpt index dd481568d8b..56806ae41d6 100644 --- a/tests/end-to-end/regression/GitHub/2085-enforce-time-limit-options-via-config-without-invoker.phpt +++ b/tests/end-to-end/regression/GitHub/2085-enforce-time-limit-options-via-config-without-invoker.phpt @@ -22,7 +22,7 @@ $_SERVER['argv'][3] = __DIR__ . '/2085/Issue2085Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Error: Package phpunit/php-invoker is required for enforcing time limits diff --git a/tests/end-to-end/regression/GitHub/2085-without-invoker.phpt b/tests/end-to-end/regression/GitHub/2085-without-invoker.phpt index bfbd41b0edd..05eaed3440b 100644 --- a/tests/end-to-end/regression/GitHub/2085-without-invoker.phpt +++ b/tests/end-to-end/regression/GitHub/2085-without-invoker.phpt @@ -23,7 +23,7 @@ $_SERVER['argv'][4] = __DIR__ . '/2085/Issue2085Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Error: Package phpunit/php-invoker is required for enforcing time limits diff --git a/tests/end-to-end/regression/GitHub/2085.phpt b/tests/end-to-end/regression/GitHub/2085.phpt index 39ed27ce1a0..00d2780db57 100644 --- a/tests/end-to-end/regression/GitHub/2085.phpt +++ b/tests/end-to-end/regression/GitHub/2085.phpt @@ -24,7 +24,7 @@ $_SERVER['argv'][] = __DIR__ . '/2085/Issue2085Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine R 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/2137-filter.phpt b/tests/end-to-end/regression/GitHub/2137-filter.phpt index f362f51942e..ff5e2deb803 100644 --- a/tests/end-to-end/regression/GitHub/2137-filter.phpt +++ b/tests/end-to-end/regression/GitHub/2137-filter.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = 'BrandService'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine W 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/2137-no_filter.phpt b/tests/end-to-end/regression/GitHub/2137-no_filter.phpt index 012b964895c..02c5c9bda0f 100644 --- a/tests/end-to-end/regression/GitHub/2137-no_filter.phpt +++ b/tests/end-to-end/regression/GitHub/2137-no_filter.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/2137/Issue2137Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine WW 2 / 2 (100%) diff --git a/tests/end-to-end/regression/GitHub/2145.phpt b/tests/end-to-end/regression/GitHub/2145.phpt index a1518b9e54c..0a67360e565 100644 --- a/tests/end-to-end/regression/GitHub/2145.phpt +++ b/tests/end-to-end/regression/GitHub/2145.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/2145/Issue2145Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine E diff --git a/tests/end-to-end/regression/GitHub/2158.phpt b/tests/end-to-end/regression/GitHub/2158.phpt index 7121b8d9d06..95487997970 100644 --- a/tests/end-to-end/regression/GitHub/2158.phpt +++ b/tests/end-to-end/regression/GitHub/2158.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/2158/Issue2158Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine .. 2 / 2 (100%) diff --git a/tests/end-to-end/regression/GitHub/2366.phpt b/tests/end-to-end/regression/GitHub/2366.phpt index bef92177243..00194ac154d 100644 --- a/tests/end-to-end/regression/GitHub/2366.phpt +++ b/tests/end-to-end/regression/GitHub/2366.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/2366/Issue2366Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine .. 2 / 2 (100%) diff --git a/tests/end-to-end/regression/GitHub/2380.phpt b/tests/end-to-end/regression/GitHub/2380.phpt index c8bc0af607f..3be81846f03 100644 --- a/tests/end-to-end/regression/GitHub/2380.phpt +++ b/tests/end-to-end/regression/GitHub/2380.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/2380/Issue2380Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/2382.phpt b/tests/end-to-end/regression/GitHub/2382.phpt index d1287ff2c70..7ac5cfba19a 100644 --- a/tests/end-to-end/regression/GitHub/2382.phpt +++ b/tests/end-to-end/regression/GitHub/2382.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/2382/Issue2382Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/2435.phpt b/tests/end-to-end/regression/GitHub/2435.phpt index e069da3261e..902488a545a 100644 --- a/tests/end-to-end/regression/GitHub/2435.phpt +++ b/tests/end-to-end/regression/GitHub/2435.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/2435/Issue2435Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/2448-existing-test.phpt b/tests/end-to-end/regression/GitHub/2448-existing-test.phpt index b63f9691fcb..565bbb3c5bb 100644 --- a/tests/end-to-end/regression/GitHub/2448-existing-test.phpt +++ b/tests/end-to-end/regression/GitHub/2448-existing-test.phpt @@ -13,7 +13,7 @@ PHPUnit\TextUI\Command::main(false); @unlink(__DIR__ . '/2448/.phpunit.result.cache'); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/2724-diff-pid-from-master-process.phpt b/tests/end-to-end/regression/GitHub/2724-diff-pid-from-master-process.phpt index 69a0d0123e6..68379c76141 100644 --- a/tests/end-to-end/regression/GitHub/2724-diff-pid-from-master-process.phpt +++ b/tests/end-to-end/regression/GitHub/2724-diff-pid-from-master-process.phpt @@ -12,7 +12,7 @@ require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/2725-separate-class-before-after-pid.phpt b/tests/end-to-end/regression/GitHub/2725-separate-class-before-after-pid.phpt index c44194587e2..77998230b84 100644 --- a/tests/end-to-end/regression/GitHub/2725-separate-class-before-after-pid.phpt +++ b/tests/end-to-end/regression/GitHub/2725-separate-class-before-after-pid.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/2725/BeforeAfterClassPidTest.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine .. 2 / 2 (100%) diff --git a/tests/end-to-end/regression/GitHub/2731.phpt b/tests/end-to-end/regression/GitHub/2731.phpt index 86c5cf61260..f8ed367475b 100644 --- a/tests/end-to-end/regression/GitHub/2731.phpt +++ b/tests/end-to-end/regression/GitHub/2731.phpt @@ -10,7 +10,7 @@ require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine F 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/2811.phpt b/tests/end-to-end/regression/GitHub/2811.phpt index 4a78d9ed626..4d03aeacfbd 100644 --- a/tests/end-to-end/regression/GitHub/2811.phpt +++ b/tests/end-to-end/regression/GitHub/2811.phpt @@ -10,7 +10,7 @@ require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/2830.phpt b/tests/end-to-end/regression/GitHub/2830.phpt index af179ed753f..9b0ad1e413d 100644 --- a/tests/end-to-end/regression/GitHub/2830.phpt +++ b/tests/end-to-end/regression/GitHub/2830.phpt @@ -10,7 +10,7 @@ require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/2972.phpt b/tests/end-to-end/regression/GitHub/2972.phpt index f72a1101d43..67148d66298 100644 --- a/tests/end-to-end/regression/GitHub/2972.phpt +++ b/tests/end-to-end/regression/GitHub/2972.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/2972/'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine .. 2 / 2 (100%) diff --git a/tests/end-to-end/regression/GitHub/3093/issue-3093-test.phpt b/tests/end-to-end/regression/GitHub/3093/issue-3093-test.phpt index 7c02f0e9524..11c5fa4d07d 100644 --- a/tests/end-to-end/regression/GitHub/3093/issue-3093-test.phpt +++ b/tests/end-to-end/regression/GitHub/3093/issue-3093-test.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/Issue3093Test.php'; require_once __DIR__ . '/../../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine .. 2 / 2 (100%) diff --git a/tests/end-to-end/regression/GitHub/322.phpt b/tests/end-to-end/regression/GitHub/322.phpt index 41fec10689f..ce17f89b54e 100644 --- a/tests/end-to-end/regression/GitHub/322.phpt +++ b/tests/end-to-end/regression/GitHub/322.phpt @@ -13,7 +13,7 @@ $_SERVER['argv'][] = __DIR__ . '/322/Issue322Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Test 'Issue322Test::testOne' started Test 'Issue322Test::testOne' ended diff --git a/tests/end-to-end/regression/GitHub/3379.phpt b/tests/end-to-end/regression/GitHub/3379.phpt index 18158757a5a..994d9475d35 100644 --- a/tests/end-to-end/regression/GitHub/3379.phpt +++ b/tests/end-to-end/regression/GitHub/3379.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/3379/'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Skipped test testOne, status: 1 SSkipped test testTwo, status: 1 diff --git a/tests/end-to-end/regression/GitHub/3380/issue-3380-test.phpt b/tests/end-to-end/regression/GitHub/3380/issue-3380-test.phpt index cfff88d7ce0..d45a95209d2 100644 --- a/tests/end-to-end/regression/GitHub/3380/issue-3380-test.phpt +++ b/tests/end-to-end/regression/GitHub/3380/issue-3380-test.phpt @@ -18,7 +18,7 @@ PHPUnit\TextUI\Command::main(); unlink($tmpResultCache); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Dataprovider Execution Order ✔ First test that always works diff --git a/tests/end-to-end/regression/GitHub/3396/issue-3396-test.phpt b/tests/end-to-end/regression/GitHub/3396/issue-3396-test.phpt index d5ad1cfa0ef..eec0f6cf9aa 100644 --- a/tests/end-to-end/regression/GitHub/3396/issue-3396-test.phpt +++ b/tests/end-to-end/regression/GitHub/3396/issue-3396-test.phpt @@ -18,7 +18,7 @@ PHPUnit\TextUI\Command::main(); unlink($tmpResultCache); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Test 'DataproviderExecutionOrderTest::testAddNumbersWithADataprovider with data set "1+1=3" (1, 1, 3)' started Test 'DataproviderExecutionOrderTest::testAddNumbersWithADataprovider with data set "1+1=3" (1, 1, 3)' ended diff --git a/tests/end-to-end/regression/GitHub/3739.phpt b/tests/end-to-end/regression/GitHub/3739.phpt index 9d0e8a84cd9..ce2c5eb264d 100644 --- a/tests/end-to-end/regression/GitHub/3739.phpt +++ b/tests/end-to-end/regression/GitHub/3739.phpt @@ -10,7 +10,7 @@ require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine .E 2 / 2 (100%) diff --git a/tests/end-to-end/regression/GitHub/3881.phpt b/tests/end-to-end/regression/GitHub/3881.phpt index b5f684b1799..df04d59a3df 100644 --- a/tests/end-to-end/regression/GitHub/3881.phpt +++ b/tests/end-to-end/regression/GitHub/3881.phpt @@ -10,7 +10,7 @@ require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/3889-2.phpt b/tests/end-to-end/regression/GitHub/3889-2.phpt index 9b326857fb5..d663105faca 100644 --- a/tests/end-to-end/regression/GitHub/3889-2.phpt +++ b/tests/end-to-end/regression/GitHub/3889-2.phpt @@ -10,7 +10,7 @@ require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/3889.phpt b/tests/end-to-end/regression/GitHub/3889.phpt index 6d640e4b6fa..13648bd2d0a 100644 --- a/tests/end-to-end/regression/GitHub/3889.phpt +++ b/tests/end-to-end/regression/GitHub/3889.phpt @@ -12,7 +12,7 @@ require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/3904.phpt b/tests/end-to-end/regression/GitHub/3904.phpt index fb3965cf902..d8c811909a7 100644 --- a/tests/end-to-end/regression/GitHub/3904.phpt +++ b/tests/end-to-end/regression/GitHub/3904.phpt @@ -10,7 +10,7 @@ require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Warning: Invocation with class name is deprecated diff --git a/tests/end-to-end/regression/GitHub/3904_3.phpt b/tests/end-to-end/regression/GitHub/3904_3.phpt index 294aaad0e3f..d2761768987 100644 --- a/tests/end-to-end/regression/GitHub/3904_3.phpt +++ b/tests/end-to-end/regression/GitHub/3904_3.phpt @@ -14,7 +14,7 @@ try { } ?> --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/3983-1.phpt b/tests/end-to-end/regression/GitHub/3983-1.phpt index 46b323097dc..10fcee43194 100644 --- a/tests/end-to-end/regression/GitHub/3983-1.phpt +++ b/tests/end-to-end/regression/GitHub/3983-1.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/3983'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/3983-2.phpt b/tests/end-to-end/regression/GitHub/3983-2.phpt index 1ad445d7e81..72f482aa07c 100644 --- a/tests/end-to-end/regression/GitHub/3983-2.phpt +++ b/tests/end-to-end/regression/GitHub/3983-2.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/3983/'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/433.phpt b/tests/end-to-end/regression/GitHub/433.phpt index 692c8bda250..6c2ae4f23b0 100644 --- a/tests/end-to-end/regression/GitHub/433.phpt +++ b/tests/end-to-end/regression/GitHub/433.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/433/Issue433Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ..F 3 / 3 (100%) diff --git a/tests/end-to-end/regression/GitHub/445.phpt b/tests/end-to-end/regression/GitHub/445.phpt index 2e15c2b7e72..6d202f79ca8 100644 --- a/tests/end-to-end/regression/GitHub/445.phpt +++ b/tests/end-to-end/regression/GitHub/445.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/445/Issue445Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ..F 3 / 3 (100%) diff --git a/tests/end-to-end/regression/GitHub/4663.phpt b/tests/end-to-end/regression/GitHub/4663.phpt index b18a8ff6a1a..164eada16bc 100644 --- a/tests/end-to-end/regression/GitHub/4663.phpt +++ b/tests/end-to-end/regression/GitHub/4663.phpt @@ -10,7 +10,7 @@ require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/498.phpt b/tests/end-to-end/regression/GitHub/498.phpt index 9df30a10095..b4cbfbb7cec 100644 --- a/tests/end-to-end/regression/GitHub/498.phpt +++ b/tests/end-to-end/regression/GitHub/498.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = __DIR__ . '/498/Issue498Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine W 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/503.phpt b/tests/end-to-end/regression/GitHub/503.phpt index 386837a977e..dd90ec35db1 100644 --- a/tests/end-to-end/regression/GitHub/503.phpt +++ b/tests/end-to-end/regression/GitHub/503.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/503/Issue503Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine F 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/581.phpt b/tests/end-to-end/regression/GitHub/581.phpt index bdf07c14c2c..e3030ddc1ff 100644 --- a/tests/end-to-end/regression/GitHub/581.phpt +++ b/tests/end-to-end/regression/GitHub/581.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/581/Issue581Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine F 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/74.phpt b/tests/end-to-end/regression/GitHub/74.phpt index 84c893594d7..9bc71fe882b 100644 --- a/tests/end-to-end/regression/GitHub/74.phpt +++ b/tests/end-to-end/regression/GitHub/74.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/74/Issue74Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine E 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/765.phpt b/tests/end-to-end/regression/GitHub/765.phpt index c79ad0e2374..8f1c834c8f9 100644 --- a/tests/end-to-end/regression/GitHub/765.phpt +++ b/tests/end-to-end/regression/GitHub/765.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/765/Issue765Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine .W 2 / 2 (100%) diff --git a/tests/end-to-end/regression/GitHub/797.phpt b/tests/end-to-end/regression/GitHub/797.phpt index 3704c423401..031ee92eebf 100644 --- a/tests/end-to-end/regression/GitHub/797.phpt +++ b/tests/end-to-end/regression/GitHub/797.phpt @@ -12,7 +12,7 @@ $_SERVER['argv'][] = __DIR__ . '/797/Issue797Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/863.phpt b/tests/end-to-end/regression/GitHub/863.phpt index 2dbcf9aa234..313add59b23 100644 --- a/tests/end-to-end/regression/GitHub/863.phpt +++ b/tests/end-to-end/regression/GitHub/863.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = \dirname(\dirname(\dirname(__DIR__))) . '/_files/BankAccoun require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ............................................................... 63 / 150 ( 42%) ............................................................... 126 / 150 ( 84%) diff --git a/tests/end-to-end/regression/Trac/1021.phpt b/tests/end-to-end/regression/Trac/1021.phpt index d58ccff9318..fba9c812125 100644 --- a/tests/end-to-end/regression/Trac/1021.phpt +++ b/tests/end-to-end/regression/Trac/1021.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/1021/Issue1021Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine .. 2 / 2 (100%) diff --git a/tests/end-to-end/regression/Trac/578.phpt b/tests/end-to-end/regression/Trac/578.phpt index 0ecef39cf1f..8b3d2a0cb67 100644 --- a/tests/end-to-end/regression/Trac/578.phpt +++ b/tests/end-to-end/regression/Trac/578.phpt @@ -14,7 +14,7 @@ $_SERVER['argv'][] = __DIR__ . '/578/Issue578Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine EEE 3 / 3 (100%) diff --git a/tests/end-to-end/regression/Trac/684.phpt b/tests/end-to-end/regression/Trac/684.phpt index 0e97dd3186f..ca447392748 100644 --- a/tests/end-to-end/regression/Trac/684.phpt +++ b/tests/end-to-end/regression/Trac/684.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/684/Issue684Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine W 1 / 1 (100%) diff --git a/tests/end-to-end/regression/Trac/783.phpt b/tests/end-to-end/regression/Trac/783.phpt index efada7cb82e..dac3968d909 100644 --- a/tests/end-to-end/regression/Trac/783.phpt +++ b/tests/end-to-end/regression/Trac/783.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = __DIR__ . '/783/ParentSuite.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine .. 2 / 2 (100%) diff --git a/tests/end-to-end/report-tests-performing-assertions-when-annotated-with-does-not-perform-assertions.phpt b/tests/end-to-end/report-tests-performing-assertions-when-annotated-with-does-not-perform-assertions.phpt index f1dcc7feeb8..a63f6fec9dd 100644 --- a/tests/end-to-end/report-tests-performing-assertions-when-annotated-with-does-not-perform-assertions.phpt +++ b/tests/end-to-end/report-tests-performing-assertions-when-annotated-with-does-not-perform-assertions.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DoesNotPerformAssertionsButPerforming require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine R 1 / 1 (100%) diff --git a/tests/end-to-end/report-useless-tests-incomplete.phpt b/tests/end-to-end/report-useless-tests-incomplete.phpt index d784494d473..44d5ba81308 100644 --- a/tests/end-to-end/report-useless-tests-incomplete.phpt +++ b/tests/end-to-end/report-useless-tests-incomplete.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/IncompleteTest.php'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine I 1 / 1 (100%) diff --git a/tests/end-to-end/report-useless-tests-isolation.phpt b/tests/end-to-end/report-useless-tests-isolation.phpt index 5fc226ab73e..c332813f5b7 100644 --- a/tests/end-to-end/report-useless-tests-isolation.phpt +++ b/tests/end-to-end/report-useless-tests-isolation.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/NothingTest.php'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine R 1 / 1 (100%) diff --git a/tests/end-to-end/report-useless-tests.phpt b/tests/end-to-end/report-useless-tests.phpt index 69d81255046..99f7160fce2 100644 --- a/tests/end-to-end/report-useless-tests.phpt +++ b/tests/end-to-end/report-useless-tests.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/NothingTest.php'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine R 1 / 1 (100%) diff --git a/tests/end-to-end/requires-skip-code-location-hints.phpt b/tests/end-to-end/requires-skip-code-location-hints.phpt index f52c0602e0b..1f92fca2ae7 100644 --- a/tests/end-to-end/requires-skip-code-location-hints.phpt +++ b/tests/end-to-end/requires-skip-code-location-hints.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = \realpath(__DIR__ . '/../_files/RequirementsTest.php'); PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine RRRRRRRRSSSSSRRRRSSSSRSSSSSSSRRSSSSSSSRRSSSSSSSSSSSSSSSSSSSWWS 62 / 62 (100%) diff --git a/tests/end-to-end/separate-processes-test.phpt b/tests/end-to-end/separate-processes-test.phpt index 4552e1eafaa..3b4097727b2 100644 --- a/tests/end-to-end/separate-processes-test.phpt +++ b/tests/end-to-end/separate-processes-test.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/SeparateProcessesTest.php'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine FF 2 / 2 (100%) diff --git a/tests/end-to-end/test-suffix-multiple.phpt b/tests/end-to-end/test-suffix-multiple.phpt index 058bbae01b6..9b93f5096a5 100644 --- a/tests/end-to-end/test-suffix-multiple.phpt +++ b/tests/end-to-end/test-suffix-multiple.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ..... 5 / 5 (100%) diff --git a/tests/end-to-end/test-suffix-single.phpt b/tests/end-to-end/test-suffix-single.phpt index 0b0077ec1b8..6cee617b63b 100644 --- a/tests/end-to-end/test-suffix-single.phpt +++ b/tests/end-to-end/test-suffix-single.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine ... 3 / 3 (100%) diff --git a/tests/end-to-end/version.phpt b/tests/end-to-end/version.phpt index 71d05d3973b..e108f5d9bb8 100644 --- a/tests/end-to-end/version.phpt +++ b/tests/end-to-end/version.phpt @@ -11,4 +11,4 @@ require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); ?> --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine