
| Current Path : /var/www/html/holz-machines/web/core/tests/Drupal/Tests/Core/Config/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/holz-machines/web/core/tests/Drupal/Tests/Core/Config/ExtensionInstallStorageTest.php |
<?php
namespace Drupal\Tests\Core\Config;
use Drupal\Core\Config\ExtensionInstallStorage;
use Drupal\Core\Config\InstallStorage;
use Drupal\Core\Config\MemoryStorage;
use Drupal\Core\Config\StorageInterface;
use Drupal\Tests\UnitTestCase;
/**
* @coversDefaultClass \Drupal\Core\Config\ExtensionInstallStorage
* @group Config
*/
class ExtensionInstallStorageTest extends UnitTestCase {
/**
* @covers ::createCollection
*/
public function testCreateCollection() {
$memory = new MemoryStorage();
$include_profile = FALSE;
$profile = $this->randomMachineName();
$collectionName = $this->randomMachineName();
// Set up the storage.
$storage = new ExtensionInstallStorage($memory, InstallStorage::CONFIG_INSTALL_DIRECTORY, StorageInterface::DEFAULT_COLLECTION, $include_profile, $profile);
// Create a collection.
$collection = $storage->createCollection($collectionName);
static::assertEquals($collectionName, $collection->getCollectionName());
}
}