function EditorSelectionTest::setUp

Sets the default field storage backend for fields created during tests.

Overrides EditTestBase::setUp

File

drupal/core/modules/edit/lib/Drupal/edit/Tests/EditorSelectionTest.php, line 40
Contains \Drupal\edit\Tests\EditorSelectionTest.

Class

EditorSelectionTest
Test in-place field editor selection.

Namespace

Drupal\edit\Tests

Code

function setUp() {
  parent::setUp();
  $this->editorManager = $this->container
    ->get('plugin.manager.edit.editor');
  $this->editorSelector = new EditorSelector($this->editorManager);
}