8000 Remove always-true requirement by jderusse · Pull Request #41297 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Remove always-true requirement #41297

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading 8000
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,6 @@ public function testGc()
$this->proxy->gc(86400);
}

/**
* @requires PHPUnit 5.1
*/
public function testValidateId()
{
$mock = $this->createMock(TestSessionHandler::class);
Expand All @@ -137,9 +134,6 @@ public function testValidateId()
$this->assertTrue($this->proxy->validateId('id'));
}

/**
* @requires PHPUnit 5.1
*/
public function testUpdateTimestamp()
{
$mock = $this->createMock(TestSessionHandler::class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,6 @@ public function testGetValueThrowsExceptionIfUninitializedProperty()
$this->propertyAccessor->getValue(new UninitializedProperty(), 'uninitialized');
}

/**
* @requires PHP 7
*/
public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetter()
{
$this->expectException(AccessException::class);
Expand All @@ -159,9 +156,6 @@ public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetter()
$this->propertyAccessor->getValue(new UninitializedPrivateProperty(), 'uninitialized');
}

/**
* @requires PHP 7
*/
public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetterOfAnonymousClass()
{
$this->expectException(AccessException::class);
Expand All @@ -179,9 +173,6 @@ public function getUninitialized(): array
$this->propertyAccessor->getValue($object, 'uninitialized');
}

/**
* @requires PHP 7
*/
public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetterOfAnonymousStdClass()
{
$this->expectException(AccessException::class);
Expand All @@ -199,9 +190,6 @@ public function getUninitialized(): array
$this->propertyAccessor->getValue($object, 'uninitialized');
}

/**
* @requires PHP 7
*/
public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetterOfAnonymousChildClass()
{
$this->expectException(AccessException::class);
Expand Down
0