You are here

public function ImceTest::testImageIcon 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::testImageIcon()

Test imageIcon().

File

tests/src/Kernel/Plugin/CKEditorPlugin/ImceTest.php, line 104

Class

ImceTest
Kernel tests for Imce plugins for CKEditor.

Namespace

Drupal\Tests\imce\Kernel\Plugin\CKEditorPlugin

Code

public function testImageIcon() {
  $imageIcon = $this->imce
    ->imageIcon();
  $this
    ->assertTrue(is_string($imageIcon));
  $this
    ->assertTrue(file_exists($imageIcon));
}