Skip to content

Commit

Permalink
Merge pull request #126 from samsonasik/step3-enable-test-get-modifiers
Browse files Browse the repository at this point in the history
[Step 3 Upgrade] Enable skipped test: ReflectionClassTest::testGetModifiers()
  • Loading branch information
lisachenko committed Jan 15, 2024
2 parents d080526 + 01c5002 commit c5c467f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tests/ReflectionClassTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,9 @@ class ReflectionClassTest extends AbstractTestCase
*/
public function testGetModifiers($fileName)
{
if (PHP_VERSION_ID >= 80000) {
$this->markTestSkipped('TODO: Fix mapping and logic of modifiers');
}
$mask =
\ReflectionClass::IS_EXPLICIT_ABSTRACT
+ \ReflectionClass::IS_FINAL
+ \ReflectionClass::IS_IMPLICIT_ABSTRACT;
+ \ReflectionClass::IS_FINAL;

$this->setUpFile($fileName);
$parsedClasses = $this->parsedRefFileNamespace->getClasses();
Expand Down

0 comments on commit c5c467f

Please sign in to comment.