class ImmutableConfigTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php \Drupal\Tests\Core\Config\ImmutableConfigTest
@coversDefaultClass \Drupal\Core\Config\ImmutableConfig @group Config
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\Core\Config\ImmutableConfigTest
Expanded class hierarchy of ImmutableConfigTest
File
- core/
tests/ Drupal/ Tests/ Core/ Config/ ImmutableConfigTest.php, line 17 - Contains \Drupal\Tests\Core\Config\ImmutableConfigTest.
Namespace
Drupal\Tests\Core\ConfigView source
class ImmutableConfigTest extends UnitTestCase {
/**
* The immutable config object under test.
*
* @var \Drupal\Core\Config\ImmutableConfig
*/
protected $config;
protected function setUp() {
parent::setUp();
$storage = $this
->getMock('Drupal\\Core\\Config\\StorageInterface');
$event_dispatcher = $this
->getMock('Symfony\\Component\\EventDispatcher\\EventDispatcherInterface');
$typed_config = $this
->getMock('Drupal\\Core\\Config\\TypedConfigManagerInterface');
$this->config = new ImmutableConfig('test', $storage, $event_dispatcher, $typed_config);
}
/**
* @covers ::set
* @expectedException \Drupal\Core\Config\ImmutableConfigException
* @expectedExceptionMessage Can not set values on immutable configuration test:name. Use \Drupal\Core\Config\ConfigFactoryInterface::getEditable() to retrieve a mutable configuration object
*/
public function testSet() {
$this->config
->set('name', 'value');
}
/**
* @covers ::clear
* @expectedException \Drupal\Core\Config\ImmutableConfigException
* @expectedExceptionMessage Can not clear name key in immutable configuration test. Use \Drupal\Core\Config\ConfigFactoryInterface::getEditable() to retrieve a mutable configuration object
*/
public function testClear() {
$this->config
->clear('name');
}
/**
* @covers ::save
* @expectedException \Drupal\Core\Config\ImmutableConfigException
* @expectedExceptionMessage Can not save immutable configuration test. Use \Drupal\Core\Config\ConfigFactoryInterface::getEditable() to retrieve a mutable configuration object
*/
public function testSave() {
$this->config
->save();
}
/**
* @covers ::delete
* @expectedException \Drupal\Core\Config\ImmutableConfigException
* @expectedExceptionMessage Can not delete immutable configuration test. Use \Drupal\Core\Config\ConfigFactoryInterface::getEditable() to retrieve a mutable configuration object
*/
public function testDelete() {
$this->config
->delete();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ImmutableConfigTest:: |
protected | property | The immutable config object under test. | |
ImmutableConfigTest:: |
protected | function |
Overrides UnitTestCase:: |
|
ImmutableConfigTest:: |
public | function | @covers ::clear @expectedException \Drupal\Core\Config\ImmutableConfigException @expectedExceptionMessage Can not clear name key in immutable configuration test. Use \Drupal\Core\Config\ConfigFactoryInterface::getEditable() to retrieve a mutable… | |
ImmutableConfigTest:: |
public | function | @covers ::delete @expectedException \Drupal\Core\Config\ImmutableConfigException @expectedExceptionMessage Can not delete immutable configuration test. Use \Drupal\Core\Config\ConfigFactoryInterface::getEditable() to retrieve a mutable configuration… | |
ImmutableConfigTest:: |
public | function | @covers ::save @expectedException \Drupal\Core\Config\ImmutableConfigException @expectedExceptionMessage Can not save immutable configuration test. Use \Drupal\Core\Config\ConfigFactoryInterface::getEditable() to retrieve a mutable configuration object | |
ImmutableConfigTest:: |
public | function | @covers ::set @expectedException \Drupal\Core\Config\ImmutableConfigException @expectedExceptionMessage Can not set values on immutable configuration test:name. Use \Drupal\Core\Config\ConfigFactoryInterface::getEditable() to retrieve a mutable… | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. |