Skip to content

Commit

Permalink
Add test for #5498
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Sep 3, 2023
1 parent 9a4fa75 commit 9a915e4
Show file tree
Hide file tree
Showing 3 changed files with 109 additions and 0 deletions.
52 changes: 52 additions & 0 deletions tests/end-to-end/regression/5498.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
--TEST--
https://github.com/sebastianbergmann/phpunit/issues/5498
--XFAIL--
https://github.com/sebastianbergmann/phpunit/issues/5498
--FILE--
<?php declare(strict_types=1);
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

$_SERVER['argv'][] = '--do-not-cache-result';
$_SERVER['argv'][] = '--no-configuration';
$_SERVER['argv'][] = '--no-output';
$_SERVER['argv'][] = '--log-events-text';
$_SERVER['argv'][] = $traceFile;
$_SERVER['argv'][] = __DIR__ . '/5498';

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

(new PHPUnit\TextUI\Application)->run($_SERVER['argv']);

print file_get_contents($traceFile);

unlink($traceFile);
--EXPECTF--
PHPUnit Started (%s)
Test Runner Configured
Test Suite Loaded (1 test)
Event Facade Sealed
Test Runner Started
Test Suite Sorted
Test Runner Execution Started (1 test)
Test Suite Started (%s/5498, 1 test)
Test Suite Started (PHPUnit\TestFixture\Issue5498\Test, 1 test)
Test Preparation Started (PHPUnit\TestFixture\Issue5498\Test::testOne)
Before Test Method Called (PHPUnit\TestFixture\Issue5498\Test::parentBefore)
Before Test Method Called (PHPUnit\TestFixture\Issue5498\Test::before)
Before Test Method Finished:
- PHPUnit\TestFixture\Issue5498\Test::parentBefore
- PHPUnit\TestFixture\Issue5498\Test::before
Test Prepared (PHPUnit\TestFixture\Issue5498\Test::testOne)
Assertion Succeeded (Constraint: is true, Value: true)
Test Passed (PHPUnit\TestFixture\Issue5498\Test::testOne)
After Test Method Called (PHPUnit\TestFixture\Issue5498\Test::after)
After Test Method Called (PHPUnit\TestFixture\Issue5498\Test::parentAfter)
After Test Method Finished:
- PHPUnit\TestFixture\Issue5498\Test::after
- PHPUnit\TestFixture\Issue5498\Test::parentAfter
Test Finished (PHPUnit\TestFixture\Issue5498\Test::testOne)
Test Suite Finished (PHPUnit\TestFixture\Issue5498\Test, 1 test)
Test Suite Finished (%s/5498, 1 test)
Test Runner Execution Finished
Test Runner Finished
PHPUnit Finished (Shell Exit Code: 0)
31 changes: 31 additions & 0 deletions tests/end-to-end/regression/5498/Test.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?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\Issue5498;

use PHPUnit\Framework\Attributes\After;
use PHPUnit\Framework\Attributes\Before;

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

#[Before]
protected function before(): void
{
}

#[After]
protected function after(): void
{
}
}
26 changes: 26 additions & 0 deletions tests/end-to-end/regression/5498/TestCase.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.
*/
namespace PHPUnit\TestFixture\Issue5498;

use PHPUnit\Framework\Attributes\After;
use PHPUnit\Framework\Attributes\Before;

abstract class TestCase extends \PHPUnit\Framework\TestCase
{
#[Before]
protected function parentBefore(): void
{
}

#[After]
protected function parentAfter(): void
{
}
}

0 comments on commit 9a915e4

Please sign in to comment.