You are here

public function FilterUninstallValidatorTest::testValidateNoFormats in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/filter/tests/src/Unit/FilterUninstallValidatorTest.php \Drupal\Tests\filter\Unit\FilterUninstallValidatorTest::testValidateNoFormats()
  2. 10 core/modules/filter/tests/src/Unit/FilterUninstallValidatorTest.php \Drupal\Tests\filter\Unit\FilterUninstallValidatorTest::testValidateNoFormats()

@covers ::validate

File

core/modules/filter/tests/src/Unit/FilterUninstallValidatorTest.php, line 52

Class

FilterUninstallValidatorTest
@coversDefaultClass \Drupal\filter\FilterUninstallValidator @group filter

Namespace

Drupal\Tests\filter\Unit

Code

public function testValidateNoFormats() {
  $this->filterUninstallValidator
    ->expects($this
    ->once())
    ->method('getFilterDefinitionsByProvider')
    ->willReturn([
    'test_filter_plugin' => [
      'id' => 'test_filter_plugin',
      'provider' => 'filter_test',
    ],
  ]);
  $this->filterUninstallValidator
    ->expects($this
    ->once())
    ->method('getEnabledFilterFormats')
    ->willReturn([]);
  $module = $this
    ->randomMachineName();
  $expected = [];
  $reasons = $this->filterUninstallValidator
    ->validate($module);
  $this
    ->assertSame($expected, $this
    ->castSafeStrings($reasons));
}