-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a4fa75
commit 9a915e4
Showing
3 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
{ | ||
} | ||
} |