function BaseFieldDefinitionTestBase::setUp

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Field/BaseFieldDefinitionTestBase.php \Drupal\Tests\Core\Field\BaseFieldDefinitionTestBase::setUp()
  2. 8.9.x core/tests/Drupal/Tests/Core/Field/BaseFieldDefinitionTestBase.php \Drupal\Tests\Core\Field\BaseFieldDefinitionTestBase::setUp()
  3. 11.x core/tests/Drupal/Tests/Core/Field/BaseFieldDefinitionTestBase.php \Drupal\Tests\Core\Field\BaseFieldDefinitionTestBase::setUp()

Overrides UnitTestCase::setUp

File

core/tests/Drupal/Tests/Core/Field/BaseFieldDefinitionTestBase.php, line 29

Class

BaseFieldDefinitionTestBase
Provides setup method for testing base field definitions.

Namespace

Drupal\Tests\Core\Field

Code

protected function setUp() : void {
  parent::setUp();
  // getModuleAndPath() returns an array of the module name and directory.
  [
    $module_name,
    $module_dir,
  ] = $this->getModuleAndPath();
  $namespaces = new \ArrayObject();
  $namespaces["Drupal\\{$module_name}"] = $module_dir . '/src';
  $module_handler = $this->createMock('Drupal\\Core\\Extension\\ModuleHandlerInterface');
  $module_handler->expects($this->once())
    ->method('moduleExists')
    ->with($module_name)
    ->willReturn(TRUE);
  $typed_data_manager = $this->createMock(TypedDataManagerInterface::class);
  $field_type_category_manager = $this->createMock(FieldTypeCategoryManagerInterface::class);
  $plugin_manager = new FieldTypePluginManager($namespaces, $this->createMock('Drupal\\Core\\Cache\\CacheBackendInterface'), $module_handler, $typed_data_manager, $field_type_category_manager);
  $container = new ContainerBuilder();
  $container->set('plugin.manager.field.field_type', $plugin_manager);
  // The 'string_translation' service is used by the @Translation annotation.
  $container->set('string_translation', $this->getStringTranslationStub());
  \Drupal::setContainer($container);
  $this->definition = BaseFieldDefinition::create($this->getPluginId());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.