function ProxyBuilderTest::testBuildWithNestedInterface

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Component/ProxyBuilder/ProxyBuilderTest.php \Drupal\Tests\Component\ProxyBuilder\ProxyBuilderTest::testBuildWithNestedInterface()
  2. 10 core/tests/Drupal/Tests/Component/ProxyBuilder/ProxyBuilderTest.php \Drupal\Tests\Component\ProxyBuilder\ProxyBuilderTest::testBuildWithNestedInterface()
  3. 11.x core/tests/Drupal/Tests/Component/ProxyBuilder/ProxyBuilderTest.php \Drupal\Tests\Component\ProxyBuilder\ProxyBuilderTest::testBuildWithNestedInterface()

@covers ::build

File

core/tests/Drupal/Tests/Component/ProxyBuilder/ProxyBuilderTest.php, line 225

Class

ProxyBuilderTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Component%21ProxyBuilder%21ProxyBuilder.php/class/ProxyBuilder/9" title="Generates the string representation of the proxy service." class="local">\Drupal\Component\ProxyBuilder\ProxyBuilder</a> @group proxy_builder

Namespace

Drupal\Tests\Component\ProxyBuilder

Code

public function testBuildWithNestedInterface() {
    $class = 'Drupal\\Tests\\Component\\ProxyBuilder\\TestServiceWithChildInterfaces';
    $result = $this->proxyBuilder
        ->build($class);
    $method_body = '';
    $interface_string = ' implements \\Drupal\\Tests\\Component\\ProxyBuilder\\TestChildInterface';
    $this->assertEquals($this->buildExpectedClass($class, $method_body, $interface_string), $result);
}

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