You are here

public function ImceTest::testGetConfig in IMCE 8

Same name and namespace in other branches
  1. 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\CKEditorPlugin

Code

public function testGetConfig() {
  $config = $this->imce
    ->getConfig($this
    ->createMock(Editor::class));
  $this
    ->assertTrue(is_array($config));
  $this
    ->assertCount(2, $config);
}