function SettingsValidatorTest::testSettingsValidationDuringPreApply

Tests settings validation during pre-apply.

Attributes

#[DataProvider('providerSettingsValidation')]

Parameters

bool $setting: The value of the update_fetch_with_http_fallback setting.

\Drupal\package_manager\ValidationResult[] $expected_results: The expected validation results.

File

core/modules/package_manager/tests/src/Kernel/SettingsValidatorTest.php, line 64

Class

SettingsValidatorTest
Tests Settings Validator.

Namespace

Drupal\Tests\package_manager\Kernel

Code

public function testSettingsValidationDuringPreApply(bool $setting, array $expected_results) : void {
  $this->addEventTestListener(function () use ($setting) : void {
    $this->setSetting('update_fetch_with_http_fallback', $setting);
  });
  $this->assertResults($expected_results, PreApplyEvent::class);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.