public function FieldUninstallValidatorTest::testValidateNoStorages in Drupal 9
Same name and namespace in other branches
- 8 core/modules/field/tests/src/Unit/FieldUninstallValidatorTest.php \Drupal\Tests\field\Unit\FieldUninstallValidatorTest::testValidateNoStorages()
@covers ::validate
File
- core/
modules/ field/ tests/ src/ Unit/ FieldUninstallValidatorTest.php, line 40
Class
- FieldUninstallValidatorTest
- @coversDefaultClass \Drupal\field\FieldUninstallValidator @group field
Namespace
Drupal\Tests\field\UnitCode
public function testValidateNoStorages() {
$this->fieldUninstallValidator
->expects($this
->once())
->method('getFieldStoragesByModule')
->willReturn([]);
$module = $this
->randomMachineName();
$expected = [];
$reasons = $this->fieldUninstallValidator
->validate($module);
$this
->assertEquals($expected, $reasons);
}