public function UnitTestCase::getConfigStorageStub in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/UnitTestCase.php \Drupal\Tests\UnitTestCase::getConfigStorageStub()
- 10 core/tests/Drupal/Tests/UnitTestCase.php \Drupal\Tests\UnitTestCase::getConfigStorageStub()
Returns a stub config storage that returns the supplied configuration.
Parameters
array $configs: An associative array of configuration settings whose keys are configuration object names and whose values are key => value arrays for the configuration object in question.
Return value
\Drupal\Core\Config\StorageInterface A mocked config storage.
File
- core/
tests/ Drupal/ Tests/ UnitTestCase.php, line 173
Class
- UnitTestCase
- Provides a base class and helpers for Drupal unit tests.
Namespace
Drupal\TestsCode
public function getConfigStorageStub(array $configs) {
$config_storage = $this
->createMock('Drupal\\Core\\Config\\NullStorage');
$config_storage
->expects($this
->any())
->method('listAll')
->will($this
->returnValue(array_keys($configs)));
foreach ($configs as $name => $config) {
$config_storage
->expects($this
->any())
->method('read')
->with($this
->equalTo($name))
->will($this
->returnValue($config));
}
return $config_storage;
}