1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
--TEST--
https://github.com/sebastianbergmann/phpunit/issues/4391
--INI--
disable_functions=proc_open
--FILE--
<?php declare(strict_types=1);
$_SERVER['argv'][] = '--do-not-cache-result';
$_SERVER['argv'][] = '--no-configuration';
$_SERVER['argv'][] = '--process-isolation';
$_SERVER['argv'][] = __DIR__ . '/4391/RunClassInSeparateProcessClassTest.php';
require_once __DIR__ . '/../../bootstrap.php';
$buffer = \file_get_contents(__DIR__ . '/../../../src/Runner/Version.php');
$start = \strpos($buffer, 'new VersionId(\'') + \strlen('new VersionId(\'');
$end = \strpos($buffer, '\'', $start);
$version = \substr($buffer, $start, $end - $start);
// Version::$version requires the proc_open function
(new ReflectionProperty(PHPUnit\Runner\Version::class, 'version'))->setValue(null, $version);
(new PHPUnit\TextUI\Application)->run($_SERVER['argv']);
--EXPECTF--
PHPUnit %s by Sebastian Bergmann and contributors.
Runtime: %s
SS 2 / 2 (100%)
Time: %s, Memory: %s
OK, but some tests were skipped!
Tests: 2, Assertions: 0, Skipped: 2.
|