Skip to content

Commit

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

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

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

E 1 / 1 (100%)

Time: %s, Memory: %s

There was 1 error:

1) Issue5210Test::testOne
Exception: test

%s:%d

ERRORS!
Tests: 1, Assertions: 1, Errors: 1.
23 changes: 23 additions & 0 deletions tests/end-to-end/regression/5210/Issue5210Test.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.
*/
use PHPUnit\Framework\TestCase;

final class Issue5210Test extends TestCase
{
protected function tearDown(): void
{
throw new \Exception('test');
}

public function testOne(): void
{
$this->assertTrue(true);
}
}

0 comments on commit 88562ac

Please sign in to comment.