diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 4e967520955..231c31a954f 100644 --- a/src/Runner/Version.php +++ b/src/Runner/Version.php @@ -60,6 +60,6 @@ public static function series(): string public static function getVersionString(): string { - return 'PHPUnit ' . self::id() . ' by Sebastian Bergmann and contributors.'; + return 'PHPUnit ' . self::id() . ' #StandWithUkraine'; } } diff --git a/src/TextUI/TestRunner.php b/src/TextUI/TestRunner.php index dfda9359b7d..7a2c98ee5ab 100644 --- a/src/TextUI/TestRunner.php +++ b/src/TextUI/TestRunner.php @@ -54,6 +54,7 @@ use PHPUnit\TextUI\XmlConfiguration\Configuration; use PHPUnit\TextUI\XmlConfiguration\Loader; use PHPUnit\TextUI\XmlConfiguration\PhpHandler; +use PHPUnit\Util\Color; use PHPUnit\Util\Filesystem; use PHPUnit\Util\Log\JUnit; use PHPUnit\Util\Log\TeamCity; @@ -325,9 +326,18 @@ public function run(TestSuite $suite, array $arguments = [], array $warnings = [ $this->printer->setShowProgressAnimation(!$arguments['noInteraction']); } - $this->printer->write( - Version::getVersionString() . "\n" - ); + if ($arguments['colors'] !== DefaultResultPrinter::COLOR_NEVER) { + $this->write( + 'PHPUnit ' . + Version::id() . + ' ' . + Color::colorize('fg-cyan', '#StandWith') . + Color::colorize('fg-yellow', 'Ukraine') . + "\n" + ); + } else { + $this->write(Version::getVersionString() . "\n"); + } foreach ($arguments['listeners'] as $listener) { $result->addListener($listener); @@ -614,7 +624,7 @@ public function run(TestSuite $suite, array $arguments = [], array $warnings = [ exit(self::SUCCESS_EXIT); } - $this->printer->write("\n"); + $this->write("\n"); if (isset($codeCoverage)) { $result->setCodeCoverage($codeCoverage); @@ -1239,7 +1249,7 @@ private function createPrinter(string $class, array $arguments): ResultPrinter private function codeCoverageGenerationStart(string $format): void { - $this->printer->write( + $this->write( sprintf( "\nGenerating code coverage report in %s format ... ", $format @@ -1251,7 +1261,7 @@ private function codeCoverageGenerationStart(string $format): void private function codeCoverageGenerationSucceeded(): void { - $this->printer->write( + $this->write( sprintf( "done [%s]\n", $this->timer->stop()->asString() @@ -1261,7 +1271,7 @@ private function codeCoverageGenerationSucceeded(): void private function codeCoverageGenerationFailed(\Exception $e): void { - $this->printer->write( + $this->write( sprintf( "failed [%s]\n%s\n", $this->timer->stop()->asString(), 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 74b750f4236..abfb48be362 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.php diff --git a/tests/end-to-end/cli/bootstrap-not-found.phpt b/tests/end-to-end/cli/bootstrap-not-found.phpt index fd429885093..6c7273e2f05 100644 --- a/tests/end-to-end/cli/bootstrap-not-found.phpt +++ b/tests/end-to-end/cli/bootstrap-not-found.phpt @@ -7,6 +7,6 @@ Test fail on missing bootstrap require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Cannot open file "nonExistingBootstrap.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/generate-configuration.phpt b/tests/end-to-end/cli/generate-configuration.phpt index bb77c51eb9f..8de6647f856 100644 --- a/tests/end-to-end/cli/generate-configuration.phpt +++ b/tests/end-to-end/cli/generate-configuration.phpt @@ -15,7 +15,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/cli/test-file-not-found.phpt b/tests/end-to-end/cli/test-file-not-found.phpt index 8f0a460ce2f..dd0847b9156 100644 --- a/tests/end-to-end/cli/test-file-not-found.phpt +++ b/tests/end-to-end/cli/test-file-not-found.phpt @@ -7,6 +7,6 @@ Test incorrect testFile is reported require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Cannot open file "nonExistingFile.php". 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/coverage-annotation-based-filter/covers-annotation-based-filter.phpt b/tests/end-to-end/coverage-annotation-based-filter/covers-annotation-based-filter.phpt index f3eab68db27..3da6e46ff1d 100644 --- a/tests/end-to-end/coverage-annotation-based-filter/covers-annotation-based-filter.phpt +++ b/tests/end-to-end/coverage-annotation-based-filter/covers-annotation-based-filter.phpt @@ -13,7 +13,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Test 'PHPUnit\TestFixture\AnnotationFilterTest::testOne' started Test 'PHPUnit\TestFixture\AnnotationFilterTest::testOne' ended diff --git a/tests/end-to-end/coverage-annotation-based-filter/uses-annotation-based-filter.phpt b/tests/end-to-end/coverage-annotation-based-filter/uses-annotation-based-filter.phpt index 21d94e1b517..eb1026d119d 100644 --- a/tests/end-to-end/coverage-annotation-based-filter/uses-annotation-based-filter.phpt +++ b/tests/end-to-end/coverage-annotation-based-filter/uses-annotation-based-filter.phpt @@ -13,7 +13,7 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Test 'PHPUnit\TestFixture\AnnotationFilterTest::testTwo' started Test 'PHPUnit\TestFixture\AnnotationFilterTest::testTwo' ended 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 3d7d0ee4d76..ddb00960524 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 Warning: Test case class not matching filename is deprecated diff --git a/tests/end-to-end/dataprovider-log-xml-isolation.phpt b/tests/end-to-end/dataprovider-log-xml-isolation.phpt index 6f2b34d7b70..1e96df83b7f 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 52ab9a7cdae..39e47361ac2 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 47a521faa9e..46e4520f8ef 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 (PHPUnit\TestFixture\DummyFoo) ✔ Foo equals foo diff --git a/tests/end-to-end/defaulttestsuite.phpt b/tests/end-to-end/defaulttestsuite.phpt index eec0168a073..cef59700aac 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 (PHPUnit\TestFixture\DummyBar) ✔ Bar equals bar diff --git a/tests/end-to-end/dump-xdebug-filter.phpt b/tests/end-to-end/dump-xdebug-filter.phpt index ba5c8e93434..baa41583864 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 Please note that --dump-xdebug-filter and --prepend are deprecated and will be removed in PHPUnit 10. --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Warning: Test case class not matching filename is deprecated diff --git a/tests/end-to-end/filter-class-isolation.phpt b/tests/end-to-end/filter-class-isolation.phpt index abff259ac11..b2592a9fd3e 100644 --- a/tests/end-to-end/filter-class-isolation.phpt +++ b/tests/end-to-end/filter-class-isolation.phpt @@ -12,7 +12,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/filter-class.phpt b/tests/end-to-end/filter-class.phpt index 68c67695cb1..b1e264cfc64 100644 --- a/tests/end-to-end/filter-class.phpt +++ b/tests/end-to-end/filter-class.phpt @@ -11,7 +11,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/filter-dataprovider-by-classname-and-range-isolation.phpt b/tests/end-to-end/filter-dataprovider-by-classname-and-range-isolation.phpt index 78444fff3a6..1361a2da513 100644 --- a/tests/end-to-end/filter-dataprovider-by-classname-and-range-isolation.phpt +++ b/tests/end-to-end/filter-dataprovider-by-classname-and-range-isolation.phpt @@ -12,7 +12,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-dataprovider-by-classname-and-range.phpt b/tests/end-to-end/filter-dataprovider-by-classname-and-range.phpt index 3d446aceb61..23ed435b801 100644 --- a/tests/end-to-end/filter-dataprovider-by-classname-and-range.phpt +++ b/tests/end-to-end/filter-dataprovider-by-classname-and-range.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-dataprovider-by-number-isolation.phpt b/tests/end-to-end/filter-dataprovider-by-number-isolation.phpt index 345eb735518..960fbc9308c 100644 --- a/tests/end-to-end/filter-dataprovider-by-number-isolation.phpt +++ b/tests/end-to-end/filter-dataprovider-by-number-isolation.phpt @@ -12,7 +12,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-dataprovider-by-number.phpt b/tests/end-to-end/filter-dataprovider-by-number.phpt index 7d856d9206f..8a120340bb6 100644 --- a/tests/end-to-end/filter-dataprovider-by-number.phpt +++ b/tests/end-to-end/filter-dataprovider-by-number.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-dataprovider-by-only-range-isolation.phpt b/tests/end-to-end/filter-dataprovider-by-only-range-isolation.phpt index 56cc4bc8029..ddf9e9541fd 100644 --- a/tests/end-to-end/filter-dataprovider-by-only-range-isolation.phpt +++ b/tests/end-to-end/filter-dataprovider-by-only-range-isolation.phpt @@ -12,7 +12,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-dataprovider-by-only-range.phpt b/tests/end-to-end/filter-dataprovider-by-only-range.phpt index bb770d74229..6f74a4b0c07 100644 --- a/tests/end-to-end/filter-dataprovider-by-only-range.phpt +++ b/tests/end-to-end/filter-dataprovider-by-only-range.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-dataprovider-by-only-regexp-isolation.phpt b/tests/end-to-end/filter-dataprovider-by-only-regexp-isolation.phpt index d0564f2e9f4..81872dedacb 100644 --- a/tests/end-to-end/filter-dataprovider-by-only-regexp-isolation.phpt +++ b/tests/end-to-end/filter-dataprovider-by-only-regexp-isolation.phpt @@ -12,7 +12,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-dataprovider-by-only-regexp.phpt b/tests/end-to-end/filter-dataprovider-by-only-regexp.phpt index 7e93c089bd9..0daa9ab9cad 100644 --- a/tests/end-to-end/filter-dataprovider-by-only-regexp.phpt +++ b/tests/end-to-end/filter-dataprovider-by-only-regexp.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-dataprovider-by-only-string-isolation.phpt b/tests/end-to-end/filter-dataprovider-by-only-string-isolation.phpt index 0a149185b48..7506f316aa8 100644 --- a/tests/end-to-end/filter-dataprovider-by-only-string-isolation.phpt +++ b/tests/end-to-end/filter-dataprovider-by-only-string-isolation.phpt @@ -12,7 +12,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-dataprovider-by-only-string.phpt b/tests/end-to-end/filter-dataprovider-by-only-string.phpt index 53e14380c4c..b59747e5c0d 100644 --- a/tests/end-to-end/filter-dataprovider-by-only-string.phpt +++ b/tests/end-to-end/filter-dataprovider-by-only-string.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-dataprovider-by-range-isolation.phpt b/tests/end-to-end/filter-dataprovider-by-range-isolation.phpt index f0ac1c6dcc8..365872d7ad3 100644 --- a/tests/end-to-end/filter-dataprovider-by-range-isolation.phpt +++ b/tests/end-to-end/filter-dataprovider-by-range-isolation.phpt @@ -12,7 +12,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-dataprovider-by-range.phpt b/tests/end-to-end/filter-dataprovider-by-range.phpt index e5d6b2016a0..b522a4aaea8 100644 --- a/tests/end-to-end/filter-dataprovider-by-range.phpt +++ b/tests/end-to-end/filter-dataprovider-by-range.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-dataprovider-by-regexp-isolation.phpt b/tests/end-to-end/filter-dataprovider-by-regexp-isolation.phpt index 1f5165ea918..9492af3d849 100644 --- a/tests/end-to-end/filter-dataprovider-by-regexp-isolation.phpt +++ b/tests/end-to-end/filter-dataprovider-by-regexp-isolation.phpt @@ -12,7 +12,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-dataprovider-by-regexp.phpt b/tests/end-to-end/filter-dataprovider-by-regexp.phpt index be441493303..79020a3649a 100644 --- a/tests/end-to-end/filter-dataprovider-by-regexp.phpt +++ b/tests/end-to-end/filter-dataprovider-by-regexp.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-dataprovider-by-string-isolation.phpt b/tests/end-to-end/filter-dataprovider-by-string-isolation.phpt index 845e4a54a20..9e3448fd62a 100644 --- a/tests/end-to-end/filter-dataprovider-by-string-isolation.phpt +++ b/tests/end-to-end/filter-dataprovider-by-string-isolation.phpt @@ -12,7 +12,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-dataprovider-by-string.phpt b/tests/end-to-end/filter-dataprovider-by-string.phpt index 30856a1c436..214a4b39366 100644 --- a/tests/end-to-end/filter-dataprovider-by-string.phpt +++ b/tests/end-to-end/filter-dataprovider-by-string.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/DataProviderFilterTest.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/filter-method-case-insensitive.phpt b/tests/end-to-end/filter-method-case-insensitive.phpt index 0eaf61adace..b0b95e87e9c 100644 --- a/tests/end-to-end/filter-method-case-insensitive.phpt +++ b/tests/end-to-end/filter-method-case-insensitive.phpt @@ -11,7 +11,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 . 1 / 1 (100%) diff --git a/tests/end-to-end/filter-method-case-sensitive-no-result.phpt b/tests/end-to-end/filter-method-case-sensitive-no-result.phpt index c9d9fb02e75..0a14593f45f 100644 --- a/tests/end-to-end/filter-method-case-sensitive-no-result.phpt +++ b/tests/end-to-end/filter-method-case-sensitive-no-result.phpt @@ -11,6 +11,6 @@ $_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 No tests executed! diff --git a/tests/end-to-end/filter-method-isolation.phpt b/tests/end-to-end/filter-method-isolation.phpt index d4e6852f389..16ec47de7ec 100644 --- a/tests/end-to-end/filter-method-isolation.phpt +++ b/tests/end-to-end/filter-method-isolation.phpt @@ -12,7 +12,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 . 1 / 1 (100%) diff --git a/tests/end-to-end/filter-method.phpt b/tests/end-to-end/filter-method.phpt index 7063a48e77a..d7f771dc607 100644 --- a/tests/end-to-end/filter-method.phpt +++ b/tests/end-to-end/filter-method.phpt @@ -11,7 +11,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 . 1 / 1 (100%) diff --git a/tests/end-to-end/filter-no-results.phpt b/tests/end-to-end/filter-no-results.phpt index 8506df099dd..d9aee6c8322 100644 --- a/tests/end-to-end/filter-no-results.phpt +++ b/tests/end-to-end/filter-no-results.phpt @@ -11,6 +11,6 @@ $_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 No tests executed! diff --git a/tests/end-to-end/force-covers-annotation.phpt b/tests/end-to-end/force-covers-annotation.phpt index 45fd6223914..5cb775c7828 100644 --- a/tests/end-to-end/force-covers-annotation.phpt +++ b/tests/end-to-end/force-covers-annotation.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/force-covers-annotation/tests/Test.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/getActualOutputForAssertion.phpt b/tests/end-to-end/getActualOutputForAssertion.phpt index 91678fbfedc..a5d737e817e 100644 --- a/tests/end-to-end/getActualOutputForAssertion.phpt +++ b/tests/end-to-end/getActualOutputForAssertion.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/ActualOutputTest.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/group-isolation.phpt b/tests/end-to-end/group-isolation.phpt index 10e78ad19b0..c789bd7db56 100644 --- a/tests/end-to-end/group-isolation.phpt +++ b/tests/end-to-end/group-isolation.phpt @@ -12,7 +12,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 . 1 / 1 (100%) diff --git a/tests/end-to-end/group.phpt b/tests/end-to-end/group.phpt index fd13f2e7440..b8fe87b46c2 100644 --- a/tests/end-to-end/group.phpt +++ b/tests/end-to-end/group.phpt @@ -12,7 +12,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/NumericGroupAnnotationTest.php'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Numeric Group Annotation (PHPUnit\TestFixture\NumericGroupAnnotation) ✔ Empty test for @ticket numeric annotation values diff --git a/tests/end-to-end/ini-isolation.phpt b/tests/end-to-end/ini-isolation.phpt index 39a9814bd5b..373189c43df 100644 --- a/tests/end-to-end/ini-isolation.phpt +++ b/tests/end-to-end/ini-isolation.phpt @@ -12,7 +12,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/IniTest.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/internal-prophecy-integration-test.phpt b/tests/end-to-end/internal-prophecy-integration-test.phpt index 5d7e0201de8..ff83447d446 100644 --- a/tests/end-to-end/internal-prophecy-integration-test.phpt +++ b/tests/end-to-end/internal-prophecy-integration-test.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/../_files/InternalProphecyIntegrationTest.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/list-groups.phpt b/tests/end-to-end/list-groups.phpt index 39a8c4a6ec0..c74aecc3426 100644 --- a/tests/end-to-end/list-groups.phpt +++ b/tests/end-to-end/list-groups.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 Available test group(s): - 1234 diff --git a/tests/end-to-end/list-suites.phpt b/tests/end-to-end/list-suites.phpt index 999c4fe7d66..4547782434d 100644 --- a/tests/end-to-end/list-suites.phpt +++ b/tests/end-to-end/list-suites.phpt @@ -10,7 +10,7 @@ $_SERVER['argv'][] = __DIR__.'/../_files/configuration.suites.xml'; require_once __DIR__ . '/../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Available test suite(s): - Suite One diff --git a/tests/end-to-end/list-tests-dataprovider.phpt b/tests/end-to-end/list-tests-dataprovider.phpt index 61d01ccb860..750f69ebeb0 100644 --- a/tests/end-to-end/list-tests-dataprovider.phpt +++ b/tests/end-to-end/list-tests-dataprovider.phpt @@ -10,7 +10,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 Available test(s): - PHPUnit\TestFixture\DataProviderTest::testAdd#0 diff --git a/tests/end-to-end/list-tests-xml-dataprovider.phpt b/tests/end-to-end/list-tests-xml-dataprovider.phpt index 4cf165c0ff7..dc2845367e0 100644 --- a/tests/end-to-end/list-tests-xml-dataprovider.phpt +++ b/tests/end-to-end/list-tests-xml-dataprovider.phpt @@ -15,7 +15,7 @@ PHPUnit\TextUI\Command::main(false); print file_get_contents($target); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Wrote list of tests that would have been run to %s 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 aea86168152..178715497c4 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 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 dd8490a7321..58ca2a55d4a 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 'PHPUnit\TestFixture\BankAccountTest::testBalanceIsInitiallyZero' started Test 'PHPUnit\TestFixture\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 39b5105a076..fd1ca38b9d9 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 acdcf53bd89..8073772da7a 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\StatusTest::testSuccess' started Test 'PHPUnit\SelfTest\Basic\StatusTest::testSuccess' ended diff --git a/tests/end-to-end/loggers/failure-reverse-list.phpt b/tests/end-to-end/loggers/failure-reverse-list.phpt index e6bcdce0d0e..aebce095927 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/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 bc6a3977b8a..1e607f80398 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 db6af912c80..49696a44709 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 f18de9c2e51..3436fbbdc67 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 ebae85ebe42..03579a94e2b 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 a6c7a77f880..59cb5c4d48a 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 2b36ad7e749..c68b39f569a 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 (PHPUnit\TestFixture\BankAccount) ... 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 086d2056754..dd6924ecc1c 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/migration/migration-from-85-with-custom-filename.phpt b/tests/end-to-end/migration/migration-from-85-with-custom-filename.phpt index 7a9d8fbf295..98da6e24b92 100644 --- a/tests/end-to-end/migration/migration-from-85-with-custom-filename.phpt +++ b/tests/end-to-end/migration/migration-from-85-with-custom-filename.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 Created backup: %scustom.xml.bak Migrated configuration: %scustom.xml diff --git a/tests/end-to-end/migration/migration-from-85.phpt b/tests/end-to-end/migration/migration-from-85.phpt index 7ea1d33c9d4..50f3b6886df 100644 --- a/tests/end-to-end/migration/migration-from-85.phpt +++ b/tests/end-to-end/migration/migration-from-85.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 Created backup: %sphpunit.xml.bak Migrated configuration: %sphpunit.xml diff --git a/tests/end-to-end/migration/migration-from-92.phpt b/tests/end-to-end/migration/migration-from-92.phpt index 33c2bde6e69..0ca182f9eba 100644 --- a/tests/end-to-end/migration/migration-from-92.phpt +++ b/tests/end-to-end/migration/migration-from-92.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 Created backup: %sphpunit.xml.bak Migrated configuration: %sphpunit.xml diff --git a/tests/end-to-end/migration/migration-not-needed.phpt b/tests/end-to-end/migration/migration-not-needed.phpt index 4f0f3ac0623..f23c27078f4 100644 --- a/tests/end-to-end/migration/migration-not-needed.phpt +++ b/tests/end-to-end/migration/migration-not-needed.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 %sphpunit.xml does not need to be migrated. --CLEAN-- diff --git a/tests/end-to-end/migration/possibility-to-migrate-from-85-is-detected.phpt b/tests/end-to-end/migration/possibility-to-migrate-from-85-is-detected.phpt index 3c0fd3e15a1..d7bf5eed77f 100644 --- a/tests/end-to-end/migration/possibility-to-migrate-from-85-is-detected.phpt +++ b/tests/end-to-end/migration/possibility-to-migrate-from-85-is-detected.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 Runtime: PHP %s Configuration: %sphpunit.xml diff --git a/tests/end-to-end/migration/possibility-to-migrate-from-92-is-detected.phpt b/tests/end-to-end/migration/possibility-to-migrate-from-92-is-detected.phpt index 859e8378501..6ebd150a8eb 100644 --- a/tests/end-to-end/migration/possibility-to-migrate-from-92-is-detected.phpt +++ b/tests/end-to-end/migration/possibility-to-migrate-from-92-is-detected.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 Runtime: PHP %s Configuration: %sphpunit.xml diff --git a/tests/end-to-end/no-log-cc-override/no-log-no-cc.phpt b/tests/end-to-end/no-log-cc-override/no-log-no-cc.phpt index a75308dde8d..20c626b6c37 100644 --- a/tests/end-to-end/no-log-cc-override/no-log-no-cc.phpt +++ b/tests/end-to-end/no-log-cc-override/no-log-no-cc.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 . 1 / 1 (100%) diff --git a/tests/end-to-end/one-class-per-file-valid.phpt b/tests/end-to-end/one-class-per-file-valid.phpt index f31f0eaf7f8..9afb9cdf602 100644 --- a/tests/end-to-end/one-class-per-file-valid.phpt +++ b/tests/end-to-end/one-class-per-file-valid.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 . 1 / 1 (100%) 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 77d58ed4443..f0078ae2895 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 Warning: Using a custom test suite loader is deprecated 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/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.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 c9ac385becf..a8d65af21eb 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 E 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 b23386a90b0..257c5989809 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 EE 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 5fc50fa0769..73f452a6554 100644 --- a/tests/end-to-end/regression/GitHub/2448-existing-test.phpt +++ b/tests/end-to-end/regression/GitHub/2448-existing-test.phpt @@ -11,7 +11,7 @@ $_SERVER['argv'][] = 'Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(false); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/2448-not-existing-test.phpt b/tests/end-to-end/regression/GitHub/2448-not-existing-test.phpt index 30b79215bea..c8b873d1ee1 100644 --- a/tests/end-to-end/regression/GitHub/2448-not-existing-test.phpt +++ b/tests/end-to-end/regression/GitHub/2448-not-existing-test.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = 'Test.php'; require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(false); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Cannot open file "Test.php". --CLEAN-- 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 b4fdd5e2903..e5654d00a1c 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 Warning: Test case class not matching filename is deprecated 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 9c9d99974f2..588db65ca2b 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 @@ -17,7 +17,7 @@ $_SERVER['argv'][] = \dirname(\dirname(\dirname(__DIR__))) . '/../_files/Datapro require_once __DIR__ . '/../../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --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 6acaf2ffd0b..9ed41c146d9 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 @@ -17,7 +17,7 @@ $_SERVER['argv'][] = \dirname(\dirname(\dirname(__DIR__))) . '/../_files/Datapro require_once __DIR__ . '/../../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --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/3904.phpt b/tests/end-to-end/regression/GitHub/3904.phpt index b3e63c0316b..e47144469d8 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 . 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/4232.phpt b/tests/end-to-end/regression/GitHub/4232.phpt index 91ae28e6d91..cace1e63efe 100644 --- a/tests/end-to-end/regression/GitHub/4232.phpt +++ b/tests/end-to-end/regression/GitHub/4232.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/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/4376.phpt b/tests/end-to-end/regression/GitHub/4376.phpt index a5bc91c140a..8855c7ada77 100644 --- a/tests/end-to-end/regression/GitHub/4376.phpt +++ b/tests/end-to-end/regression/GitHub/4376.phpt @@ -9,7 +9,7 @@ $_SERVER['argv'][] = __DIR__ . '/4376/'; 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/4407.phpt b/tests/end-to-end/regression/GitHub/4407.phpt index 5b8c327af84..856d8c60ebe 100644 --- a/tests/end-to-end/regression/GitHub/4407.phpt +++ b/tests/end-to-end/regression/GitHub/4407.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/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/4498.phpt b/tests/end-to-end/regression/GitHub/4498.phpt index 163af27af04..d7aba3b905d 100644 --- a/tests/end-to-end/regression/GitHub/4498.phpt +++ b/tests/end-to-end/regression/GitHub/4498.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 . 1 / 1 (100%) diff --git a/tests/end-to-end/regression/GitHub/4620.phpt b/tests/end-to-end/regression/GitHub/4620.phpt index df424d64051..afab7c5435d 100644 --- a/tests/end-to-end/regression/GitHub/4620.phpt +++ b/tests/end-to-end/regression/GitHub/4620.phpt @@ -13,7 +13,7 @@ require_once __DIR__ . '/../../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Error in bootstrap script: PHPUnit\TestFixture\MyException: Big boom. Big bada boom. diff --git a/tests/end-to-end/regression/GitHub/4630.phpt b/tests/end-to-end/regression/GitHub/4630.phpt index 24c16a6470b..649567f80a6 100644 --- a/tests/end-to-end/regression/GitHub/4630.phpt +++ b/tests/end-to-end/regression/GitHub/4630.phpt @@ -13,7 +13,7 @@ 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/4632.phpt b/tests/end-to-end/regression/GitHub/4632.phpt index 6066e512d9f..ad6269fad4b 100644 --- a/tests/end-to-end/regression/GitHub/4632.phpt +++ b/tests/end-to-end/regression/GitHub/4632.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 Issue4632 (PHPUnit\TestFixture\Issue4632) ✘ One 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 74b561cfbc8..e7805ea71ec 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 E 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 2510ae5e6b0..f956e8ea8a9 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 .E 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 a0e995a4e4e..87c8dd7d4cf 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 7e097d775c3..df0a68fe787 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 8abab23c102..f266edb29d6 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 91b6f0f33e6..b741a93da7d 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 571bbd0bc55..3976beced61 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/risky-tests/global-state.phpt b/tests/end-to-end/risky-tests/global-state.phpt index 4ac62cda464..9e79589e160 100644 --- a/tests/end-to-end/risky-tests/global-state.phpt +++ b/tests/end-to-end/risky-tests/global-state.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 R 1 / 1 (100%) diff --git a/tests/end-to-end/separate-processes-test.phpt b/tests/end-to-end/separate-processes-test.phpt index 6f63d623855..1b9f30c1283 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/standardtestsuiteloader-issue-4192-1.phpt b/tests/end-to-end/standardtestsuiteloader-issue-4192-1.phpt index cace284e7cc..6250e15ba3e 100644 --- a/tests/end-to-end/standardtestsuiteloader-issue-4192-1.phpt +++ b/tests/end-to-end/standardtestsuiteloader-issue-4192-1.phpt @@ -9,7 +9,7 @@ $cmd->run([ (new \ReflectionClass(\ConcreteTest::class))->getFileName() ], false); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Runtime: PHP %s Configuration: %s diff --git a/tests/end-to-end/standardtestsuiteloader-issue-4192-2.phpt b/tests/end-to-end/standardtestsuiteloader-issue-4192-2.phpt index 1d058e3d146..01f7c89a057 100644 --- a/tests/end-to-end/standardtestsuiteloader-issue-4192-2.phpt +++ b/tests/end-to-end/standardtestsuiteloader-issue-4192-2.phpt @@ -9,7 +9,7 @@ $cmd->run([ realpath(__DIR__.'/../_files/ConcreteTest.php') ], false); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Runtime: PHP %s Configuration: %s diff --git a/tests/end-to-end/test-directory-does-not-exist/test-directory-does-not-exist.phpt b/tests/end-to-end/test-directory-does-not-exist/test-directory-does-not-exist.phpt index 18bc01126c5..1e8cfb937d0 100644 --- a/tests/end-to-end/test-directory-does-not-exist/test-directory-does-not-exist.phpt +++ b/tests/end-to-end/test-directory-does-not-exist/test-directory-does-not-exist.phpt @@ -10,6 +10,6 @@ require_once __DIR__ . '/../../bootstrap.php'; PHPUnit\TextUI\Command::main(); --EXPECTF-- -PHPUnit %s by Sebastian Bergmann and contributors. +PHPUnit %s #StandWithUkraine Test directory "%stest-directory-does-not-exist%stests" not found diff --git a/tests/end-to-end/test-suffix-multiple.phpt b/tests/end-to-end/test-suffix-multiple.phpt index d1ce8e62f42..874d29bfe27 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 Warning: Test case class not matching filename is deprecated diff --git a/tests/end-to-end/test-suffix-single.phpt b/tests/end-to-end/test-suffix-single.phpt index 6160e0ffd53..9383d78cc0d 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 Warning: Test case class not matching filename is deprecated diff --git a/tests/end-to-end/two-classes-per-file-invalid.phpt b/tests/end-to-end/two-classes-per-file-invalid.phpt index 5fb2a5ca0e5..e119c64250b 100644 --- a/tests/end-to-end/two-classes-per-file-invalid.phpt +++ b/tests/end-to-end/two-classes-per-file-invalid.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 Warning: Test case class not matching filename is deprecated 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