Skip to content

Commit

Permalink
created test for #5567
Browse files Browse the repository at this point in the history
  • Loading branch information
ptomulik authored and sebastianbergmann committed Dec 4, 2023
1 parent d5d9dca commit ef31134
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
32 changes: 32 additions & 0 deletions tests/end-to-end/regression/5567.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
--TEST--
https://github.com/sebastianbergmann/phpunit/issues/5567
--FILE--
<?php declare(strict_types=1);
$_SERVER['argv'][] = '--do-not-cache-result';
$_SERVER['argv'][] = '--no-configuration';
$_SERVER['argv'][] = __DIR__ . '/5567/Issue5567Test.php';

require_once __DIR__ . '/../../bootstrap.php';
(new PHPUnit\TextUI\Application)->run($_SERVER['argv']);
--EXPECTF--
PHPUnit %s by Sebastian Bergmann and contributors.

Runtime: %s

F 1 / 1 (100%)

Time: %s, Memory: %s MB

There was 1 failure:

1) PHPUnit\TestFixture\Issue5567\Issue5567Test::testAnythingThatFailsWithRecursiveArray
Failed asserting that Array &0 [
'self' => Array &1 [
'self' => Array &1,
],
] is false.

%sIssue5567Test.php:%d

FAILURES!
Tests: 1, Assertions: 1, Failures: 1.
23 changes: 23 additions & 0 deletions tests/end-to-end/regression/5567/Issue5567Test.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?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\Issue5567;

use PHPUnit\Framework\TestCase;

final class Issue5567Test extends TestCase
{
public function testAnythingThatFailsWithRecursiveArray(): void
{
$array = [];
$array['self'] = &$array;

$this->assertFalse($array);
}
}

0 comments on commit ef31134

Please sign in to comment.