You are here

public function KeyValueEntityStorageTest::getMockEntity in Drupal 8

Creates an entity with specific methods mocked.

Parameters

string $class: (optional) The concrete entity class to mock. Defaults to 'Drupal\Core\Entity\EntityBase'.

array $arguments: (optional) Arguments to pass to the constructor. An empty set of values and an entity type ID will be provided.

array $methods: (optional) The methods to mock.

Return value

\Drupal\Core\Entity\EntityInterface|\PHPUnit\Framework\MockObject\MockObject

11 calls to KeyValueEntityStorageTest::getMockEntity()
KeyValueEntityStorageTest::testCreate in core/tests/Drupal/Tests/Core/Entity/KeyValueStore/KeyValueEntityStorageTest.php
@covers ::create @covers ::doCreate
KeyValueEntityStorageTest::testCreateWithoutUuidKey in core/tests/Drupal/Tests/Core/Entity/KeyValueStore/KeyValueEntityStorageTest.php
@covers ::create @covers ::doCreate
KeyValueEntityStorageTest::testCreateWithPredefinedUuid in core/tests/Drupal/Tests/Core/Entity/KeyValueStore/KeyValueEntityStorageTest.php
@covers ::create @covers ::doCreate
KeyValueEntityStorageTest::testDelete in core/tests/Drupal/Tests/Core/Entity/KeyValueStore/KeyValueEntityStorageTest.php
@covers ::delete @covers ::doDelete
KeyValueEntityStorageTest::testLoad in core/tests/Drupal/Tests/Core/Entity/KeyValueStore/KeyValueEntityStorageTest.php
@covers ::load @covers ::postLoad

... See full list

File

core/tests/Drupal/Tests/Core/Entity/KeyValueStore/KeyValueEntityStorageTest.php, line 698

Class

KeyValueEntityStorageTest
@coversDefaultClass \Drupal\Core\Entity\KeyValueStore\KeyValueEntityStorage @group Entity

Namespace

Drupal\Tests\Core\Entity\KeyValueStore

Code

public function getMockEntity($class = 'Drupal\\Core\\Entity\\EntityBase', array $arguments = [], $methods = []) {

  // Ensure the entity is passed at least an array of values and an entity
  // type ID
  if (!isset($arguments[0])) {
    $arguments[0] = [];
  }
  if (!isset($arguments[1])) {
    $arguments[1] = 'test_entity_type';
  }
  return $this
    ->getMockForAbstractClass($class, $arguments, '', TRUE, TRUE, TRUE, $methods);
}