function FilterUninstallValidatorTest::testValidateNoPlugins
Same name in other branches
- 9 core/modules/filter/tests/src/Unit/FilterUninstallValidatorTest.php \Drupal\Tests\filter\Unit\FilterUninstallValidatorTest::testValidateNoPlugins()
- 10 core/modules/filter/tests/src/Unit/FilterUninstallValidatorTest.php \Drupal\Tests\filter\Unit\FilterUninstallValidatorTest::testValidateNoPlugins()
- 11.x core/modules/filter/tests/src/Unit/FilterUninstallValidatorTest.php \Drupal\Tests\filter\Unit\FilterUninstallValidatorTest::testValidateNoPlugins()
@covers ::validate
File
-
core/
modules/ filter/ tests/ src/ Unit/ FilterUninstallValidatorTest.php, line 36
Class
- FilterUninstallValidatorTest
- @coversDefaultClass \Drupal\filter\FilterUninstallValidator @group filter
Namespace
Drupal\Tests\filter\UnitCode
public function testValidateNoPlugins() {
$this->filterUninstallValidator
->expects($this->once())
->method('getFilterDefinitionsByProvider')
->willReturn([]);
$this->filterUninstallValidator
->expects($this->never())
->method('getEnabledFilterFormats');
$module = $this->randomMachineName();
$expected = [];
$reasons = $this->filterUninstallValidator
->validate($module);
$this->assertSame($expected, $this->castSafeStrings($reasons));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.