public function ImceTest::testGetConfig in IMCE 8
Same name and namespace in other branches
- 8.2 tests/src/Kernel/Plugin/CKEditorPlugin/ImceTest.php \Drupal\Tests\imce\Kernel\Plugin\CKEditorPlugin\ImceTest::testGetConfig()
Test getConfig().
File
- tests/
src/ Kernel/ Plugin/ CKEditorPlugin/ ImceTest.php, line 95
Class
- ImceTest
- Kernel tests for Imce plugins for CKEditor.
Namespace
Drupal\Tests\imce\Kernel\Plugin\CKEditorPluginCode
public function testGetConfig() {
$config = $this->imce
->getConfig($this
->createMock(Editor::class));
$this
->assertTrue(is_array($config));
$this
->assertCount(2, $config);
}