function UpdateSemverContribTest::setProjectInstalledVersion
Overrides UpdateSemverTestBase::setProjectInstalledVersion
File
-
core/
modules/ update/ tests/ src/ Functional/ UpdateSemverContribTest.php, line 35
Class
- UpdateSemverContribTest
- Tests the Update Manager module with a contrib module with semver versions.
Namespace
Drupal\Tests\update\FunctionalCode
protected function setProjectInstalledVersion($version) {
$system_info = [
$this->updateProject => [
'project' => $this->updateProject,
'version' => $version,
'hidden' => FALSE,
],
// Ensure Drupal core on the same version for all test runs.
'drupal' => [
'project' => 'drupal',
'version' => '8.0.0',
'hidden' => FALSE,
],
];
$this->config('update_test.settings')
->set('system_info', $system_info)
->save();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.