function ConfigFormBaseTraitTest::testConfigFactoryException
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Form/ConfigFormBaseTraitTest.php \Drupal\Tests\Core\Form\ConfigFormBaseTraitTest::testConfigFactoryException()
- 8.9.x core/tests/Drupal/Tests/Core/Form/ConfigFormBaseTraitTest.php \Drupal\Tests\Core\Form\ConfigFormBaseTraitTest::testConfigFactoryException()
- 10 core/tests/Drupal/Tests/Core/Form/ConfigFormBaseTraitTest.php \Drupal\Tests\Core\Form\ConfigFormBaseTraitTest::testConfigFactoryException()
@covers ::config
File
-
core/
tests/ Drupal/ Tests/ Core/ Form/ ConfigFormBaseTraitTest.php, line 47
Class
- ConfigFormBaseTraitTest
- @coversDefaultClass \Drupal\Core\Form\ConfigFormBaseTrait @group Form
Namespace
Drupal\Tests\Core\FormCode
public function testConfigFactoryException() : void {
$testObject = new ConfiguredTrait();
// There is no config factory available this should result in an exception.
$this->expectException(\LogicException::class);
$this->expectExceptionMessage('No config factory available for ConfigFormBaseTrait');
$config_method = new \ReflectionMethod($testObject, 'config');
$config_method->invoke($testObject, 'editable.config');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.