Skip to content

Commit

Permalink
Add test for #5258
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Feb 27, 2023
1 parent 6663cff commit def6b4f
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
26 changes: 26 additions & 0 deletions tests/end-to-end/regression/5258.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
--TEST--
https://github.com/sebastianbergmann/phpunit/issues/5258
--FILE--
<?php declare(strict_types=1);
$_SERVER['argv'][] = '--do-not-cache-result';
$_SERVER['argv'][] = '--no-configuration';
$_SERVER['argv'][] = '--log-junit';
$_SERVER['argv'][] = '/dev/null';
$_SERVER['argv'][] = __DIR__ . '/5258/Issue5258Test.php';

require_once __DIR__ . '/../../bootstrap.php';

(new PHPUnit\TextUI\Application)->run($_SERVER['argv']);
--XFAIL--
https://github.com/sebastianbergmann/phpunit/issues/5258
--EXPECTF--
PHPUnit %s by Sebastian Bergmann and contributors.

Runtime: %s

.S 2 / 2 (100%)

Time: %s, Memory: %s MB

OK, but some tests were skipped!
Tests: 2, Assertions: 1, Skipped: 1.
29 changes: 29 additions & 0 deletions tests/end-to-end/regression/5258/Issue5258Test.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php declare(strict_types=1);
/*
* This file is part of PHPUnit.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PHPUnit\TestFixture\Issue5258;

use PHPUnit\Framework\Attributes\RequiresPhpExtension;
use PHPUnit\Framework\Attributes\RunInSeparateProcess;
use PHPUnit\Framework\TestCase;

final class Issue5258Test extends TestCase
{
public function testOne(): void
{
$this->assertTrue(true);
}

#[RunInSeparateProcess]
#[RequiresPhpExtension('notinstalled')]
public function testTwo(): void
{
$this->assertTrue(true);
}
}

0 comments on commit def6b4f

Please sign in to comment.