function ConfigFormBaseTraitTest::testConfigFactoryExceptionInvalidProperty
@covers ::config
      
    
File
- 
              core/tests/ Drupal/ Tests/ Core/ Form/ ConfigFormBaseTraitTest.php, line 60 
Class
- ConfigFormBaseTraitTest
- @coversDefaultClass \Drupal\Core\Form\ConfigFormBaseTrait[[api-linebreak]] @group Form
Namespace
Drupal\Tests\Core\FormCode
public function testConfigFactoryExceptionInvalidProperty() : 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.
