public function ConfigEntityStorageTest::testCreateWithPredefinedUuid in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityStorageTest.php \Drupal\Tests\Core\Config\Entity\ConfigEntityStorageTest::testCreateWithPredefinedUuid()
@covers ::create @covers ::doCreate
File
- core/
tests/ Drupal/ Tests/ Core/ Config/ Entity/ ConfigEntityStorageTest.php, line 200 - Contains \Drupal\Tests\Core\Config\Entity\ConfigEntityStorageTest.
Class
- ConfigEntityStorageTest
- @coversDefaultClass \Drupal\Core\Config\Entity\ConfigEntityStorage @group Config
Namespace
Drupal\Tests\Core\Config\EntityCode
public function testCreateWithPredefinedUuid() {
$this->cacheTagsInvalidator
->expects($this
->never())
->method('invalidateTags');
$this->moduleHandler
->expects($this
->at(0))
->method('invokeAll')
->with('test_entity_type_create');
$this->moduleHandler
->expects($this
->at(1))
->method('invokeAll')
->with('entity_create');
$this->uuidService
->expects($this
->never())
->method('generate');
$entity = $this->entityStorage
->create(array(
'id' => 'foo',
'uuid' => 'baz',
));
$this
->assertInstanceOf('Drupal\\Core\\Entity\\EntityInterface', $entity);
$this
->assertSame('foo', $entity
->id());
$this
->assertSame('baz', $entity
->uuid());
}