protected function EntityDecoupledTranslationRevisionsTest::doTestInternalProperties in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/KernelTests/Core/Entity/EntityDecoupledTranslationRevisionsTest.php \Drupal\KernelTests\Core\Entity\EntityDecoupledTranslationRevisionsTest::doTestInternalProperties()
- 10 core/tests/Drupal/KernelTests/Core/Entity/EntityDecoupledTranslationRevisionsTest.php \Drupal\KernelTests\Core\Entity\EntityDecoupledTranslationRevisionsTest::doTestInternalProperties()
Checks that internal properties are preserved for the specified entity.
Parameters
\Drupal\Core\Entity\ContentEntityInterface $entity: An entity object.
1 call to EntityDecoupledTranslationRevisionsTest::doTestInternalProperties()
- EntityDecoupledTranslationRevisionsTest::testInternalProperties in core/
tests/ Drupal/ KernelTests/ Core/ Entity/ EntityDecoupledTranslationRevisionsTest.php - Tests that internal properties are preserved while creating a new revision.
File
- core/
tests/ Drupal/ KernelTests/ Core/ Entity/ EntityDecoupledTranslationRevisionsTest.php, line 548
Class
- EntityDecoupledTranslationRevisionsTest
- Test decoupled translation revisions.
Namespace
Drupal\KernelTests\Core\EntityCode
protected function doTestInternalProperties(ContentEntityInterface $entity) {
$this
->assertFalse($entity
->isValidationRequired());
$entity
->setValidationRequired(TRUE);
$this
->assertTrue($entity
->isValidationRequired());
$new_revision = $this->storage
->createRevision($entity);
$this
->assertTrue($new_revision
->isValidationRequired());
}