public function ContentEntityBaseUnitTest::testSetNewRevisionException in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Entity/ContentEntityBaseUnitTest.php \Drupal\Tests\Core\Entity\ContentEntityBaseUnitTest::testSetNewRevisionException()
@covers ::setNewRevision
File
- core/
tests/ Drupal/ Tests/ Core/ Entity/ ContentEntityBaseUnitTest.php, line 274
Class
- ContentEntityBaseUnitTest
- @coversDefaultClass \Drupal\Core\Entity\ContentEntityBase @group Entity @group Access
Namespace
Drupal\Tests\Core\EntityCode
public function testSetNewRevisionException() {
$this->entityType
->expects($this
->once())
->method('hasKey')
->with('revision')
->will($this
->returnValue(FALSE));
$this
->expectException('LogicException');
$this
->expectExceptionMessage('Entity type ' . $this->entityTypeId . ' does not support revisions.');
$this->entity
->setNewRevision();
}