function ConfigFormBaseTraitTest::testConfigFactoryExceptionInvalidProperty

Same name in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Form/ConfigFormBaseTraitTest.php \Drupal\Tests\Core\Form\ConfigFormBaseTraitTest::testConfigFactoryExceptionInvalidProperty()
  2. 10 core/tests/Drupal/Tests/Core/Form/ConfigFormBaseTraitTest.php \Drupal\Tests\Core\Form\ConfigFormBaseTraitTest::testConfigFactoryExceptionInvalidProperty()
  3. 11.x core/tests/Drupal/Tests/Core/Form/ConfigFormBaseTraitTest.php \Drupal\Tests\Core\Form\ConfigFormBaseTraitTest::testConfigFactoryExceptionInvalidProperty()

@covers ::config

File

core/tests/Drupal/Tests/Core/Form/ConfigFormBaseTraitTest.php, line 59

Class

ConfigFormBaseTraitTest
@coversDefaultClass \Drupal\Core\Form\ConfigFormBaseTrait @group Form

Namespace

Drupal\Tests\Core\Form

Code

public function testConfigFactoryExceptionInvalidProperty() {
    $trait = $this->getMockForTrait('Drupal\\Core\\Form\\ConfigFormBaseTrait');
    $trait->configFactory = TRUE;
    $config_method = new \ReflectionMethod($trait, 'config');
    $config_method->setAccessible(TRUE);
    // 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->invoke($trait, 'editable.config');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.