You are here

public function DrupalTest::testConfig in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/DrupalTest.php \Drupal\Tests\Core\DrupalTest::testConfig()

Tests the config() method.

@covers ::config

File

core/tests/Drupal/Tests/Core/DrupalTest.php, line 177

Class

DrupalTest
Tests the Drupal class.

Namespace

Drupal\Tests\Core

Code

public function testConfig() {
  $config = $this
    ->createMock('Drupal\\Core\\Config\\ConfigFactoryInterface');
  $config
    ->expects($this
    ->once())
    ->method('get')
    ->with('test_config')
    ->will($this
    ->returnValue(TRUE));
  $this
    ->setMockContainerService('config.factory', $config);

  // Test \Drupal::config(), not $this->config().
  $this
    ->assertNotNull(\Drupal::config('test_config'));
}