function DrupalTest::testClassResolver

Tests the classResolver method.

@covers ::classResolver

File

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

Class

DrupalTest
Tests the Drupal class.

Namespace

Drupal\Tests\Core

Code

public function testClassResolver() {
  $class_resolver = $this->prophesize(ClassResolverInterface::class);
  $this->setMockContainerService('class_resolver', $class_resolver->reveal());
  $this->assertInstanceOf(ClassResolverInterface::class, \Drupal::classResolver());
}

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