Skip to content

Commit

Permalink
Add test for #5288
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Mar 21, 2023
1 parent b34c319 commit 98b3a35
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
19 changes: 19 additions & 0 deletions tests/end-to-end/regression/5288.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
--TEST--
https://github.com/sebastianbergmann/phpunit/issues/5288
--FILE--
<?php declare(strict_types=1);
$_SERVER['argv'][] = '--do-not-cache-result';
$_SERVER['argv'][] = '--no-configuration';
$_SERVER['argv'][] = __DIR__ . '/5288/Issue5288Test.php';

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

PHPUnit\TextUI\Command::main();
--EXPECTF--
PHPUnit %s by Sebastian Bergmann and contributors.

. 1 / 1 (100%)

Time: %s, Memory: %s

OK (1 test, 1 assertion)
26 changes: 26 additions & 0 deletions tests/end-to-end/regression/5288/Issue5288Test.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?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.
*/
use PHPUnit\Framework\TestCase;

final class Issue5288Test extends TestCase
{
public static function provider(): array
{
return [[true]];
}

/**
* @dataProvider provider()
*/
public function testOne(bool $value): void
{
$this->assertTrue($value);
}
}

0 comments on commit 98b3a35

Please sign in to comment.