protected function EditorAdminTest::enableUnicornEditor in Drupal 9
Same name and namespace in other branches
- 8 core/modules/editor/tests/src/Functional/EditorAdminTest.php \Drupal\Tests\editor\Functional\EditorAdminTest::enableUnicornEditor()
- 10 core/modules/editor/tests/src/Functional/EditorAdminTest.php \Drupal\Tests\editor\Functional\EditorAdminTest::enableUnicornEditor()
Enables the unicorn editor.
3 calls to EditorAdminTest::enableUnicornEditor()
- EditorAdminTest::addEditorToNewFormat in core/
modules/ editor/ tests/ src/ Functional/ EditorAdminTest.php - Adds an editor to a new format using the UI.
- EditorAdminTest::testAddEditorToExistingFormat in core/
modules/ editor/ tests/ src/ Functional/ EditorAdminTest.php - Tests adding a text editor to an existing text format.
- EditorAdminTest::testSwitchEditorToNone in core/
modules/ editor/ tests/ src/ Functional/ EditorAdminTest.php - Tests switching text editor to none does not throw a TypeError.
File
- core/
modules/ editor/ tests/ src/ Functional/ EditorAdminTest.php, line 197
Class
- EditorAdminTest
- Tests administration of text editors.
Namespace
Drupal\Tests\editor\FunctionalCode
protected function enableUnicornEditor() {
if (!$this->container
->get('module_handler')
->moduleExists('editor_test')) {
$this->container
->get('module_installer')
->install([
'editor_test',
]);
}
}